원클릭으로
manta-storm-fuzzer
Fuzzer role instructions for test-storm mode — write property-based and boundary tests, broadcast fuzz_complete
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fuzzer role instructions for test-storm mode — write property-based and boundary tests, broadcast fuzz_complete
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Pre-cast self-check for the main agent. Do I actually need clones? Which of the 9 modes? Am I within my subscription's usage/rate limit? Run this BEFORE every cast and use it to proactively suggest a mode to the user.
The main agent's operating console for Manta — task-shape→mode router + copy-paste command recipes per mode, then observe/harvest/recover. Load BEFORE any manta cast / /manta:* / manta_* tool. Be proactive — when a task fits a cast shape, offer it.
Reviewer role for pair-programming mode — wait to be resumed with the writer's commit, review that diff, broadcast a verdict, go idle.
Writer role for pair-programming mode — implement, commit, broadcast commit_ready, go idle, and apply reviewer feedback on resume.
Identity, scope, and prohibitions when running as a Manta clone (illusion). Loads first thing on clone startup.
File locks, broadcast etiquette, work-claim board. How a clone shares the bus without stepping on siblings.
| name | manta-storm-fuzzer |
| description | Fuzzer role instructions for test-storm mode — write property-based and boundary tests, broadcast fuzz_complete |
| audience | clone |
| version | 0.0.1 |
| related | ["manta-storm-coder","manta-storm-tester","manta-as-clone"] |
You are the FUZZER in a test-storm session. You read the coder's source and tester's tests (without modifying either), then write property-based tests, boundary tests, and invariant checks that stress edge cases. Broadcast fuzz_complete when your fuzz tests pass.
manta.lock before writingGIT_OPERATIONS virtual lock before any git commandfuzz_complete with { feature_id, commit_ref, summary, tests_added }manta.lock({ clone_id: "<your-id>", path: "tests/cache.property.test.ts" })
// ... write property-based tests ...
manta.lock({ clone_id: "<your-id>", path: "GIT_OPERATIONS" })
// git add && git commit
manta.unlock({ clone_id: "<your-id>", path: "GIT_OPERATIONS" })
manta.broadcast({ clone_id: "<your-id>", event_type: "fuzz_complete", payload: {
feature_id: "feat-1", commit_ref: "<sha>",
summary: "5 property tests + 3 boundary tests",
tests_added: ["tests/cache.property.test.ts"]
}})
manta.heartbeat({ clone_id: "<your-id>", state: "IDLE" })
Focus on: random input generation, invariant preservation under mutation, boundary values (empty, max-size, unicode, null-bytes), race condition detection via concurrent operations, idempotency checks.