Skip to content

seekayel/claude-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Claude Code Plugins

A collection of plugins for Claude Code that extend its functionality with command-line style syntax.

cmd plugin demo

Installation

Install plugins from the Claude Code Marketplace:

claude
/plugin marketplace add seekayel/claude-plugins
/plugin install cmd@claude-plugins

After installation, restart your Claude Code session or reload your configuration.

Plugins

cmd:for - Loop Command

Batch create todo items using for-loop syntax with variable substitution.

Quick Example

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

Usage Patterns

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 API

See cmd/commands/for.md for more examples.

Contributing

Contributions welcome! Please open an issue or PR.

License

MIT - See LICENSE for details.

About

install a looping syntax for claude code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published