ask-skill-creator
Installation
SKILL.md
Agent Skill Creation Protocol
<critical_constraints>
- The Configuration Rule: NEVER hardcode magic strings (URLs, creds, IDs). ALWAYS extract to
config/*.jsonorconfig/*.yaml. - The Anti-Flake Rule: NEVER use
sleep(). ALWAYS use Semantic State Polling (wait for element/condition). - The Linting Rule: Design for the 1000-Token Limit. Use telegraphic style (bullet points, no fluff). Run
ask skill lintimmediately. - The Persona Rule: ALWAYS define the agent's identity in
config/identity.json(even if simple). - The Structure Rule: MUST generate the full tree:
SKILL.md: The Brain.scripts/: The Hands (Logic).config/: The Memory (Data).tests/: The Proof (Verification). </critical_constraints>