Hi - I answer from the OpenSmartRoute documentation: routing, the API, plans and quotas, self-hosting. Ask away, or open a support ticket if you need a person.
Grounded in the docs - follow a source before acting on it.
Planner - Agent - OpenSmartRoute
Agentv1.0.0
Planner
Creates comprehensive implementation plans by researching the codebase, consulting documentation, and identifying edge cases. Use when you need a detailed plan before implementing a feature or fixing
Research: Search the codebase thoroughly. Read the relevant files. Find existing patterns.
Verify: Use #context7 and #fetch to check documentation for any libraries/APIs involved. Don't assume—verify.
Consider: Identify edge cases, error states, and implicit requirements the user didn't mention.
Plan: Output WHAT needs to happen, not HOW to code it.
Output
Summary (one paragraph)
Implementation steps (ordered)
Edge cases to handle
Open questions (if any)
Rules
Never skip documentation checks for external APIs
Consider what the user needs but didn't ask for
Note uncertainties—don't hide them
Match existing codebase patterns
Use it
Copy one of these into your project. Installing also returns the manifest and these snippets.
# after Install: the listing is in your workspace's routing pool - nothing else to configure
curl -s -X POST https://api.opensmartroute.ai/api/v1/route -H 'Authorization: Bearer $OSR_API_KEY' -H 'Content-Type: application/json' -d '{"text": "...", "plan": true}'
# or pin it on the OpenAI-compatible endpoint: {"model": "naingthuraaungdev-school-management-fe-planner-agent", ...}
Manifest
An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.
{
"ocm": "1",
"id": "naingthuraaungdev-school-management-fe-planner-agent",
"kind": "agent",
"name": "Planner",
"description": "Creates comprehensive implementation plans by researching the codebase, consulting documentation, and identifying edge cases. Use when you need a detailed plan before implementing a feature or fixing a complex issue.",
"publisher": "NaingThuraAungDev",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"agent-md",
"github-custom-agents"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Creates comprehensive implementation plans by researching the codebase, consulting documentation, and identifying edge cases. Use when you need a detailed plan before implementing a feature or fixing a complex issue."
],
"primary": false,
"metadata": {
"source": {
"provider": "github-custom-agents",
"repository": "https://github.com/NaingThuraAungDev/school-management-fe",
"path": ".github/agents/planner.agent.md",
"ref": "517bad9d5fb95d41dc7c97cee295cf6994392492",
"url": "https://github.com/NaingThuraAungDev/school-management-fe/blob/517bad9d5fb95d41dc7c97cee295cf6994392492/.github/agents/planner.agent.md",
"key": "NaingThuraAungDev/school-management-fe/.github/agents/planner.agent.md"
},
"tools": [
"vscode",
"execute",
"read",
"agent",
"io.github.upstash/context7/*",
"edit",
"search",
"web",
"memory",
"todo"
],
"model": "Claude Opus 4.6 (copilot)"
},
"instructions": "# Planning Agent\n\nYou create plans. You do NOT write code.\n\n## Workflow\n\n1. **Research**: Search the codebase thoroughly. Read the relevant files. Find existing patterns.\n2. **Verify**: Use #context7 and #fetch to check documentation for any libraries/APIs involved. Don't assume—verify.\n3. **Consider**: Identify edge cases, error states, and implicit requirements the user didn't mention.\n4. **Plan**: Output WHAT needs to happen, not HOW to code it.\n\n## Output\n\n- Summary (one paragraph)\n- Implementation steps (ordered)\n- Edge cases to handle\n- Open questions (if any)\n\n## Rules\n\n- Never skip doc",
"cost": {
"context_tokens": 189
}
}
Fetch it by URL: GET /api/v1/registry/naingthuraaungdev-school-management-fe-planner-agent/manifest?version=1.0.0
Reviews
Star ratings from people who tried it. One review per account; edit yours any time.
No reviews yet. Install it, try it, and be the first to rate it.