adr
Write an Architecture Decision Record documenting a significant technical decision.
Add inline documentation (JSDoc, docstrings, comments) to under-documented code.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/annotateContext preview
What this command does when you run it.
Add inline documentation (JSDoc, docstrings, comments) to under-documented code.
Add inline documentation (JSDoc, docstrings, comments) to under-documented code.
1. Read the target file and assess current documentation level. 2. Identify what needs documentation:
3. Generate documentation in the appropriate format:
4. For each function, document:
5. Add a module-level doc comment explaining the file's purpose. 6. Verify the documentation does not break the build or linter.
/**
* Creates a new user account with the given credentials.
*
* @param email - The user's email address (must be unique)
* @param password - Plain text password (will be hashed)
* @returns The created user object with generated ID
* @throws {ConflictError} If a user with this email already exists
* @example
* const user = await createUser("alice@example.com", "securePass123");
*/The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Write an Architecture Decision Record documenting a significant technical decision.
Conduct a structured design review of a module, feature, or system component.
Create a structured implementation plan for the requested feature or change.