Topy init
TOPY AI CEO skills for Codex, Claude Code, and npx skills
npx -y skills add TOPY-AI-LTD/TOPY-AI-CEO-Skills --skill topy-initAssembled 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
Initialize TOPY access by helping the user set and verify TOPY_AI_KEY and the https://topy.ai/api base URL. Use when the key is missing, the environment is not set up, or another TOPY skill needs auth preflight before it can call the API.
SKILL.md
1.5 KB, as published. Nobody here has run it
TOPY Init
Use this skill to set up access before any non-core TOPY workflow.
When to use
- The user has not set
TOPY_AI_KEY - A TOPY workflow needs auth and the key is missing
- The user asks how to start using TOPY skills
- Another TOPY skill has to stop because auth is not ready
What to set
- Environment variable:
TOPY_AI_KEY - API base URL:
https://topy.ai/api
Setup steps
- Ask the user to add or paste their
TOPY_AI_KEYfrom the TOPY dashboard. - Tell them to export it in the current shell or add it to their shell profile.
- Confirm the API base URL they should use.
- Verify the value is available before returning to the requesting skill.
Common commands
Temporary for one command:
TOPY_AI_KEY=tp_... npx skills add TOPY-AI-LTD/TOPY-AI-CEO-Skills --all
Current shell session:
export TOPY_AI_KEY=tp_...
Persist for bash:
echo 'export TOPY_AI_KEY=tp_...' >> ~/.bashrc
source ~/.bashrc
Persist for zsh:
echo 'export TOPY_AI_KEY=tp_...' >> ~/.zshrc
source ~/.zshrc
Rules
- Never guess the key.
- Never continue a non-core TOPY request without
TOPY_AI_KEY. - Return to the requesting skill once the key is set.
- If the user does not have a key yet, point them to the TOPY dashboard key page and stop.