Topy business plans
Skill TOPY-AI-LTD/TOPY-AI-CEO-Skills/skills/topy-business-plans
TOPY AI CEO skills for Codex, Claude Code, and npx skills
npx -y skills add TOPY-AI-LTD/TOPY-AI-CEO-Skills --skill topy-business-plansAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate, inspect, edit, regenerate, and export TOPY business plans using TOPY_AI_KEY. Use when the user wants to work on a plan lifecycle for a specific project.
SKILL.md
2.9 KB, as published. Nobody here has run it
TOPY Business Plans
Intent
Handle the full business-plan workflow for a project, including job creation, plan editing, section regeneration, and exports.
Allowed operations
- List available templates and parameters
- Start plan generation
- Check job progress
- Inspect plan detail
- Edit plan content and metadata
- Regenerate sections
- Export markdown, DOCX, or print view
- Update plan preferences
Route map
GET https://topy.ai/api/v1/projects/business-plan/optionsGET https://topy.ai/api/v1/projects/{pid}/business-plan/optionsPOST https://topy.ai/api/v1/projects/{pid}/business-plan/jobsGET https://topy.ai/api/v1/projects/{pid}/business-plan/jobs/{job_id}GET https://topy.ai/api/v1/projects/{pid}/business-plan/jobs/latestPOST https://topy.ai/api/v1/projects/{pid}/business-plan/jobs/{job_id}/cancelPOST https://topy.ai/api/v1/projects/{pid}/business-plan/jobs/{job_id}/retryGET https://topy.ai/api/v1/projects/{pid}/business-planGET https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}PATCH https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}PATCH https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}/metaDELETE https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}POST https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}/restoreGET https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}/export/markdownGET https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}/export/docxGET https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}/export/printPOST https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}/subtasks/{subtask_no}/regeneratePOST https://topy.ai/api/v1/projects/{pid}/business-plan/{plan_id}/ai/section-editPATCH https://topy.ai/api/v1/projects/{pid}/business-plan/preferences
API and auth
See references/auth-and-api.md for the shared convention.
Rules
- Before any API call, verify that
TOPY_AI_KEYis available. - Use
https://topy.ai/apias the base URL for all calls. - Check credit balance before starting a generation job if the amount is not already known.
- Do not start generation if the user does not have enough credits.
- Keep template and parameter selections aligned with the backend options payload.
- Treat job state as authoritative; do not fabricate completion.
- Use the plan detail routes for edits and exports, not the onboarding routes.
Failure behavior
- If
TOPY_AI_KEYis missing, stop and route the user totopy-init. - If the job is queued or running, report the current state instead of retrying blindly.
- If the backend says credits are insufficient, stop and surface that message.