team-731f46 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited team-731f46 (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.
Spawn and coordinate an Agent Teams session backed by Thoughtbox Hub.
/team <task description>tb.hub.workspaceDigest and ObservatoryThe hub is exposed as tb.hub.* inside the thoughtbox_execute MCP tool. Register once per MCP session — the returned agentId is implicit for every later hub call in that session, and coordinator role is bound to it (do not re-register; merges must run from this session). Submit at most ONE state-mutating hub call per thoughtbox_execute invocation; read-only calls (tb.hub.whoami, tb.hub.listWorkspaces, tb.hub.readChannel, tb.hub.workspaceDigest) may be freely chained.
Register as coordinator, then create the workspace (one thoughtbox_execute call each):
async () => tb.hub.register({ name: "Lead", profile: "MANAGER" })async () => tb.hub.createWorkspace({ name: "<task-name>", description: "<task-description>" })Analyze the task and create problems:
async () => tb.hub.createProblem({ workspaceId: "<ws-id>", title: "...", description: "..." })Add dependencies between problems if needed:
async () => tb.hub.addDependency({ workspaceId: "<ws-id>", problemId: "<dependent>", dependsOnProblemId: "<blocker>" })Use the spawn prompt templates from .claude/team-prompts/ to create teammates. Replace {{WORKSPACE_ID}} with the actual workspace ID.
Recommended team compositions:
Periodically check progress:
async () => tb.hub.workspaceDigest({ workspaceId: "<ws-id>" })When all problems are resolved and proposals are merged (tb.hub.mergeProposal from this coordinator session), summarize outcomes.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.