Install
$ agentstack add skill-jesse-merhi-skills-parallel-slice-orchestration ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Parallel Slice Orchestration
Use this when the user wants an existing PRD or slice plan implemented with subagents. The orchestrator owns decomposition, dependency order, integration, and final verification. Workers own narrow vertical slices.
Always load tdd before assigning implementation work. Load the relevant repo/domain skill before decomposition.
Only spawn subagents when the user has explicitly asked for subagents, delegation, or parallel agent work. Otherwise, produce the slice plan and ask before spawning. If subagents are unavailable in the current harness, run the same slice plan sequentially and say that parallel execution was not available.
Orchestrator Workflow
- Read the PRD, slice notes, issue, or plan plus the relevant repo
instructions.
- Identify externally meaningful behaviors and acceptance criteria.
- Build a dependency map using [decomposition.md](references/decomposition.md).
- Convert work into vertical slices, not layers.
- Do blocking foundation work locally or assign exactly one worker to it.
- Spawn workers only for independent slices with disjoint write ownership.
Keep the immediate critical-path task local.
- Give each worker the assignment contract in
[worker-contract.md](references/worker-contract.md).
- Preserve
AFKandHITLmodes. Use
[hitl-checkpoints.md](references/hitl-checkpoints.md) for review stops.
- Review each worker result before integrating, using the checklist in
[integration.md](references/integration.md).
- Resolve integration issues locally, then run the feature's relevant package
verification commands.
Slice Rules
- Parallelize independent behavior slices, not architectural layers.
- A good slice crosses the real behavior path: UI to API to persistence, command
to side effect, event to stored state, or equivalent.
- Do not assign two workers to the same files, migrations, generated clients,
route definitions, shared types, or shared test fixtures.
- If a shared type/schema/API contract is needed, land that foundation first,
then parallelize consumers.
- Prefer fewer well-scoped workers over many tiny workers that create
integration overhead.
Completion Criteria
- Every worker result has been read before integration.
- Changed files match assigned ownership.
tddwas followed, or the worker stated a valid
docs/config/generated-code exception.
- Rendered UI slices used
frontend-designfor visual direction,
design-engineering when interaction craft was material, and frontend-ui-validation before reporting done.
- HITL slices stopped at named checkpoints and returned evidence before
continuation.
- Final verification ran in the integrated tree.
Context Pointers
- Use [decomposition.md](references/decomposition.md) for dependency mapping and
vertical slicing.
- Use [worker-contract.md](references/worker-contract.md) for required worker
prompt fields and the prompt template.
- Use [hitl-checkpoints.md](references/hitl-checkpoints.md) for
AFKandHITL
handling.
- Use [integration.md](references/integration.md) for worker-result review,
verification, and anti-patterns.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jesse-merhi
- Source: jesse-merhi/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.