Coordina multipli agenti AI CLI (Kimi, Claude, Gemini, OpenAI, ecc.) che lavorano contemporaneamente sullo stesso progetto e mantiene una memoria collettiva (wiki) di tutte le sessioni passate. Usa questa skill SEMPRE quando lavori in parallelo con altre AI CLI, quando devi salvare lo stato di una sessione condivisa, quando vuoi evitare sovrascritture su file toccati da altri agenti, quando devi chiedere "questo lavoro è già stato fatto? questo bug si è già visto?", o quando l'utente parla di "multi-tap", "registry agenti", "coordination", "lock file", "handoff condiviso", "wiki delle sessioni", "chi sta lavorando su cosa" o "evitare che le AI si pestino i piedi".
72
90%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
#!/usr/bin/env bash
set -euo pipefail
echo "=== Spec Verification ==="
echo ""
bash scripts/check-spec-links.sh
bash scripts/check-target-ownership.sh
python3 scripts/build-spec-manifest.py
echo ""
echo "Spec checks passed. Running test suite..."
echo ""
if [ -f "pytest.ini" ] || [ -f "pyproject.toml" ] || [ -f "setup.cfg" ]; then
pytest tests/ -v
elif [ -f "package.json" ] && grep -q '"test"' package.json; then
npm test
elif [ -f "Cargo.toml" ]; then
cargo test
elif ! find openspec/specs -mindepth 1 -name 'spec.md' -print -quit 2>/dev/null | grep -q .; then
echo "No test runner detected, but no specs exist yet either — this is a fresh bootstrap, not a failure."
echo "Baseline: spec checks passed, test suite SKIPPED (no specs/tests yet)."
else
echo "No test runner detected. Run your test suite manually."
exit 1
fi.claude
commands
.tessl-plugin
docker
openspec
changes
2026-07-22-dockerize-sandbox
agent-registry-sync-setup-wizard
archive
2026-07-16-fix-cross-process-coordination
schemas
spec-as-source
templates
scripts
templates
tests
docker
notifier