
infinite-moves
Bridges to the infinite-moves plugin for autonomous task execution. Activates when user mentions tasks, backlog, dev loop, ideate, generate tasks, sweep debt, or wants continuous development. Knows how to invoke /moves commands without user typing them.
"Bridges to the infinite-moves plugin for autonomous task execution. Activates when user mentions tasks, backlog, dev loop, ideate, generate tasks, sweep debt, or wants continuous development. Knows how to invoke /moves commands without user typing them."
Infinite Moves - Plugin Bridge
This skill makes you aware of the infinite-moves plugin so you can use it autonomously.
When to Use
Activate when user says things like:
- "Help me work through my backlog"
- "What tasks are available?"
- "Generate tasks for [feature]"
- "Run the dev loop"
- "Check for technical debt"
- "Execute some tasks"
Available Commands
The plugin provides these commands - invoke them directly:
| Trigger | Command | What it does |
|---|---|---|
| Run/execute tasks | /moves run |
Execute tasks from manifest |
| Parallel execution | /moves run --parallel 2 |
Run non-conflicting tasks concurrently |
| Continuous mode | /moves run --continuous |
Keep going until manifest empty |
| Infinite mode | /moves run --infinite |
Never stop - auto-ideate when low |
| Check status | /moves status |
Show pipeline health, available tasks |
| Generate from idea | /moves ideate --topic "..." |
Create design doc + tasks from topic |
| Find gaps | /moves ideate |
Scan docs vs code for missing work |
| Quick health check | /moves ideate --quick |
Fast pipeline check |
| Scan debt | /moves sweep |
Find TODOs, type issues, test gaps |
| Claim task | /moves status --claim <id> |
Reserve for manual work |
| Complete task | /moves status --complete <id> |
Mark done |
Autonomous Behavior
When user wants to work on tasks, don't wait - invoke the commands:
User: "Let's knock out some tasks"
You: [invoke /moves status to see what's available]
You: [invoke /moves run to start executing]
User: "I have an idea for a meditation feature"
You: [invoke /moves ideate --topic "meditation feature"]
User: "Run tasks in parallel until done"
You: [invoke /moves run --continuous --parallel 2]
User: "Run forever" / "Keep working indefinitely" / "Infinite loop"
You: [invoke /moves run --infinite --parallel 2]
Command Details
For detailed instructions on each command, the plugin contains:
commands/run.md- Execution options and flowcommands/ideate.md- Task generation modescommands/status.md- Pipeline managementcommands/sweep.md- Debt scanning
Agents
The plugin provides agents you can spawn via Task tool:
task-executor- Executes a single task with build verificationverifier- Verifies task completion meets criteria
Data Directory
All artifacts are stored in .infinite-moves/ at the project root:
.infinite-moves/
├── manifest.json # Task manifest
├── tasks/ # Task spec files
│ └── G17-health-sync.md
├── designs/ # Design docs from ideation
├── debt-manifest.json # Technical debt tracking
└── debt-report.md # Human-readable debt report
Create this directory if it doesn't exist before running commands.
You Might Also Like
Related Skills

coding-agent
Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.
openclaw
add-uint-support
Add unsigned integer (uint) type support to PyTorch operators by updating AT_DISPATCH macros. Use when adding support for uint16, uint32, uint64 types to operators, kernels, or when user mentions enabling unsigned types, barebones unsigned types, or uint support.
pytorch
at-dispatch-v2
Convert PyTorch AT_DISPATCH macros to AT_DISPATCH_V2 format in ATen C++ code. Use when porting AT_DISPATCH_ALL_TYPES_AND*, AT_DISPATCH_FLOATING_TYPES*, or other dispatch macros to the new v2 API. For ATen kernel files, CUDA kernels, and native operator implementations.
pytorch
skill-writer
Guide users through creating Agent Skills for Claude Code. Use when the user wants to create, write, author, or design a new Skill, or needs help with SKILL.md files, frontmatter, or skill structure.
pytorch
implementing-jsc-classes-cpp
Implements JavaScript classes in C++ using JavaScriptCore. Use when creating new JS classes with C++ bindings, prototypes, or constructors.
oven-sh
implementing-jsc-classes-zig
Creates JavaScript classes using Bun's Zig bindings generator (.classes.ts). Use when implementing new JS APIs in Zig with JSC integration.
oven-sh