A collection of plugins for Claude Code that extend its functionality with command-line style syntax.
Install plugins from the Claude Code Marketplace:
claude
/plugin marketplace add seekayel/claude-plugins
/plugin install cmd@claude-pluginsAfter installation, restart your Claude Code session or reload your configuration.
Batch create todo items using for-loop syntax with variable substitution.
Review multiple GitHub PRs at once:
/cmd:for i in [3,5,42] "Review PR ${i} for security concerns"This creates three todo items:
- Review PR 3 for security concerns
- Review PR 5 for security concerns
- Review PR 42 for security concerns
Enumerated list:
/cmd:for i in [1,2,3] "Process item ${i}"Range iteration:
/cmd:for i in range(1, 5) "Deploy service-${i}"Multi-line templates:
/cmd:for i in range(1, 3):
Analyze component ${i} and document its APISee cmd/commands/for.md for more examples.
Contributions welcome! Please open an issue or PR.
MIT - See LICENSE for details.
