← Back to list

ultraplan
by jvishnefske
agentic skills plugin
⭐ 0🍴 0📅 Jan 13, 2026
SKILL.md
name: Ultraplan description: This skill should be used when the user asks to "start parallel implementation", "orchestrate tasks", "run ultraplan", "maximum parallelism", "spawn all tasks", or needs guidance on multi-phase implementation with parallel Task invocations. version: 2.0.0
Ultraplan - Maximum Parallelism Orchestration
Ultraplan coordinates multi-phase implementation by spawning ALL independent tasks in a SINGLE message per phase.
Core Principle
Spawn ALL independent tasks in a single message. No artificial concurrency limits.
4-Phase Workflow
| Phase | Action |
|---|---|
| Explore | Spawn ALL explore subagents in one message |
| Plan | Spawn ALL plan subagents in one message |
| Implement | Spawn ALL impl subagents (respect dependencies) |
| Verify | Run cargo clippy/test/llvm-cov with JSON output |
Tool-Native Outputs
Verification outputs go to .ultraplan/ in native tool formats:
| Tool | Output |
|---|---|
cargo clippy --message-format=json | .ultraplan/clippy.json |
cargo test -- --format json | .ultraplan/test-results.json |
cargo llvm-cov --json | .ultraplan/coverage.json |
Progress Tracking
State tracked in .ultraplan/progress.toml:
[meta]
phase = "implement"
[explore]
status = "complete"
tasks = ["auth", "middleware", "handlers"]
[plan]
status = "complete"
[implement]
status = "in_progress"
files_modified = ["src/auth.rs"]
Invocation
| Action | Command |
|---|---|
| Start | /ultra [target] |
| Check status | Read .ultraplan/progress.toml |
| View results | Read .ultraplan/*.json |
Context Recovery
If context runs low:
- State is in
.ultraplan/progress.toml - Run
/compact - Resume from progress file
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon