Run the skill
Open your coding agent in theagent-platform directory and ask it to run:
agents/<slug>.py, registers the agent in app/main.py, adds quick prompts to app/config.yaml, restarts the container, and smoke-tests the live endpoint.
Test your agent on the AgentOS UI
Open os.agno.com, click Refresh, choose your new agent from the Agents dropdown, and try a few prompts:- The golden path. What you built the agent for.
- Edge cases. Unusual inputs, ambiguous questions, partial information.
- Adversarial inputs. Prompt injection, out-of-scope requests, attempts to make it do something it shouldn’t.
Do it manually
Thecreate-new-agent skill automates the agent creation process. To do it manually:
- Create a file in
agents/<slug>.py. - Register the agent in
app/main.py. - Add quick prompts in
app/config.yaml.
app/main.py registration are in Railway Reference, under “Add an agent”.