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
python3 - <<'PY'
from pathlib import Path
import re
import sys
ROOT = Path.cwd()
spec_root = ROOT / "openspec" / "specs"
pattern = re.compile(r"\[@test\]\s+([^\s`)]+)")
missing = []
for spec in sorted(spec_root.glob("**/spec.md")):
text = spec.read_text(encoding="utf-8")
for raw_link in pattern.findall(text):
# [@test] paths are project-root-relative, not relative to the spec file.
candidate = (ROOT / raw_link).resolve()
project_relative = candidate.relative_to(ROOT) if str(candidate).startswith(str(ROOT)) else candidate
if not candidate.exists():
missing.append((spec, raw_link, project_relative))
if missing:
print("FAILED — missing tests referenced by specs.\n")
current_spec = None
for spec, raw_link, resolved in missing:
if spec != current_spec:
print(f"--- {spec}")
current_spec = spec
print(f" MISSING {raw_link} -> {resolved}")
print("\nA missing [@test] is worse than a failing test: the requirement is not verifiable.")
sys.exit(1)
print("check-spec-links: PASSED")
PY.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