omoc-plan-swarm — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited omoc-plan-swarm (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
3-stage pipeline. Small processes. Fail-fast. No monolith.
⚠️ DEPRECATED — Use /plan instead. All functionality merged into the ultimate plan skill.
Successor note:
/plan for all planning and execution requests./plan merges the best of omoc-plan-swarm (3-stage pipeline, fail-fast gates) with check-plan-done (execution loop, GitHub integration).task(), session_read(), background_output())This skill activates when any agent receives words like: plan, plane, planung, planning, erstelle einen plan, create a plan, roadmap, strategy, strategie, konzept, blueprint, architektur
Rule: Do NOT research or plan yourself. Load this skill and follow the pipeline.
User/Agent
|
v
STAGE 1: RESEARCH (parallel)
+------------------+------------------+
| | |
v v |
Librarian Explore |
(web/docs) (codebase) |
+------------------+------------------+
| |
+--------+---------+
|
[GATE 1: Research has substance?]
|
v
STAGE 2: PLAN (sequential)
task(category: "deep")
synthesize research -> structured plan
|
[GATE 2: Plan has all required sections?]
|
v
STAGE 3: REVIEW (sequential)
task(category: "artistry")
critical review + final revision
|
[GATE 3: No CRITICAL issues remain?]
|
v
OUTPUT: Final plan returned to callerTotal: 4 `task()` calls (2 parallel + 2 sequential)
Start both tasks simultaneously with run_in_background: true. Wait for both to complete.
task({
subagent_type: "librarian",
run_in_background: true,
load_skills: [],
description: "Web research for: [TOPIC]",
prompt: `
Research the following topic. Focus on 2025-2026 sources only.
TOPIC: [insert task description]
DATE: [today's date]
Deliver:
1. Current best practices (with source URLs)
2. Technology versions that are stable/production-ready NOW
3. Known anti-patterns to avoid
4. Community consensus (what do experts recommend?)
Output: One structured markdown section per point. Include URLs.
Do NOT pad with filler. Only verified, current information.
`
})task({
subagent_type: "explore",
run_in_background: true,
load_skills: [],
description: "Codebase analysis for: [TOPIC]",
prompt: `
Analyze the codebase for the following planning task.
TASK: [insert task description]
PATH: [project path]
Deliver:
1. Project structure and current tech stack (versions from lock files)
2. Existing patterns and code quality (good parts + debt)
3. Dependencies: outdated, vulnerable, or unused
4. Integration points that could break during changes
5. Gaps: what's missing for production-readiness?
Output: One structured markdown section per point. Use file:line references.
Be exhaustive but concise. No filler.
`
})Before proceeding, verify:
If a task returned empty/weak results: Re-run that specific task with a more focused prompt. Do NOT proceed with garbage input -- that guarantees a garbage plan.
Feed both research outputs into one planning task.
task({
category: "deep",
load_skills: [],
run_in_background: false,
description: "Create plan for: [TOPIC]",
prompt: `
Create a production-ready plan based on these research findings.
TASK: [insert task description]
WEB RESEARCH: [paste Librarian output]
CODEBASE ANALYSIS: [paste Explore output]
Use this EXACT structure:
# Plan: [Title]
Created: [date] | Scope: [what]
## Summary
[3 sentences: what, why, expected result]
## Current State
[from codebase analysis -- strengths, weaknesses, critical gaps]
## Tech Decisions
[from web research -- what to use, what version, why]
## Phases
### Phase 1: [name] -- CRITICAL
- [ ] Task (effort: S/M/L, deps: none/...)
- [ ] Task ...
### Phase 2: [name] -- HIGH
- [ ] Task ...
### Phase 3: [name] -- MEDIUM (optional)
- [ ] Task ...
## Risks
| Risk | Likelihood | Impact | Mitigation |
|------|-----------|--------|------------|
## Done Criteria
- [ ] Criterion 1
- [ ] Criterion 2
RULES:
- Every task must be concrete and actionable (no "consider doing X")
- Effort estimates are mandatory
- Phase 1 must be the critical path -- smallest set of work that unblocks everything
- Maximum 3 phases. If you need more, the scope is too big -- split it.
`
})Before proceeding, verify the plan contains:
If sections are missing: Ask the planning task to fill them. Do NOT send an incomplete plan to review.
One reviewer that combines strategic advice AND critical opposition. No need for two separate agents.
task({
category: "artistry",
load_skills: [],
run_in_background: false,
description: "Critical review of plan for: [TOPIC]",
prompt: `
You are reviewing a plan. Be direct and critical. No praise needed.
PLAN:
[paste plan from Stage 2]
Review checklist:
1. CRITICAL GAPS: What's missing that would cause failure?
2. FALSE ASSUMPTIONS: What does the plan assume that isn't proven?
3. PRIORITY ERRORS: Is Phase 1 actually the critical path?
4. SCOPE: Is this realistic or overambitious?
5. TECH CHOICES: Are the technology decisions sound for 2026?
6. NEW DEBT: Does this plan CREATE technical debt instead of solving it?
Output format:
## Verdict: APPROVED / NEEDS REVISION
## Issues (sorted by severity)
### CRITICAL (must fix before proceeding)
- ...
### HIGH (should fix)
- ...
### LOW (nice to have)
- ...
## Suggested Changes
[Concrete rewrites, not vague advice]
RULES:
- If the plan is solid, say APPROVED and list only minor improvements.
- If there are CRITICAL issues, say NEEDS REVISION and be specific about what to change.
- Never say "looks good overall" -- either it passes or it doesn't.
`
})task() calls total (2 research + 1 plan + 1 review)| Stage | Tool | Purpose |
|---|---|---|
| Research | task(subagent_type: "librarian", run_in_background: true) | Web & docs research |
| Research | task(subagent_type: "explore", run_in_background: true) | Codebase analysis |
| Research | background_output(task_id: "...") | Check if research is done |
| Plan | task(category: "deep", run_in_background: false) | Synthesize plan |
| Review | task(category: "artistry", run_in_background: false) | Critical review |
User: "Erstelle einen Plan fuer die Migration zu ESM modules"
Agent:
1. Loads this skill
2. Starts Librarian ("ESM migration best practices 2026") + Explore (scans codebase for CJS patterns) in parallel
3. Gate 1: Both returned substance? Yes -> proceed
4. Feeds findings into Plan task -> gets structured plan with 2 phases
5. Gate 2: Plan has all sections? Yes -> proceed
6. Feeds plan into Review task -> gets APPROVED with 2 LOW suggestions
7. Gate 3: No CRITICAL issues -> integrates LOW suggestions, returns final planTotal time: ~3 LLM rounds. Total tasks: 4. No temp files. No fictional agents.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.