mk:task-queue — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited mk:task-queue (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.
Manages task assignment and file ownership during parallel execution.
Tasks are tracked in session-state/task-queue.json:
{
"tasks": [
{
"id": 1,
"description": "Implement API endpoints",
"owner": null,
"status": "pending",
"ownership": ["src/api/*", "src/routes/*"],
"blocked_by": []
},
{
"id": 2,
"description": "Implement UI components",
"owner": null,
"status": "pending",
"ownership": ["src/components/*", "src/pages/*"],
"blocked_by": []
}
]
}pending → claimed (agent assigned) → in_progress → completed
→ blocked (dependency not met)status=pending AND blocked_by all completedstatus=in_progress, record ownerEach task declares file ownership via glob patterns. Before any file write, check if the file matches the agent's declared ownership.
| Action | Owned File? | Result |
|---|---|---|
| Read | Any | Always allowed |
| Write/Edit | Owned | Allowed |
| Write/Edit | Not owned | STOP — report ownership violation |
| Write/Edit | Overlapping | STOP — report conflict to orchestrator |
Team-mode coordination rules (file ownership, commit discipline, completion messages) live in .claude/skills/team-config/references/team-coordination.md, loaded by mk:team-config on team activation.
task-queue.json simultaneously may both claim the same task. Mitigation: orchestrator is the sole claim-serializer — agents REQUEST claims through orchestrator, never self-claim directlysrc/api/* and src/api/auth/* overlap — the more specific glob must be in the SAME task, not split across agentssession-state/task-queue.json before dispatching parallel agents. If missing, agents should STOP and report, not create it themselvesstatus=completed for audit trail. Queue is cleaned up only when the parallel execution phase ends~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.