saga-tracker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited saga-tracker (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.
Use the saga-mcp tools to maintain structured project state across sessions. This replaces scattered markdown files and mental bookkeeping with a SQLite-backed tracker.
tracker_init with a project name to set up the databasetracker_dashboard at the start of each session to get full contextProject
└── Epic (feature/workstream)
└── Task (unit of work)
├── Subtask (checklist item)
├── Comment (discussion thread)
└── Dependencies (blocked by other tasks)tracker_dashboard() → Get full project overview with summaryepic_create({ project_id, name, priority })
task_create({ epic_id, title, priority, depends_on: [task_ids] })
subtask_create({ task_id, titles: ["step 1", "step 2", "step 3"] })task_update({ id, status: "in_progress" }) → Start working
task_update({ id, status: "done" }) → Complete (auto-unblocks dependents)
subtask_update({ id, status: "done" }) → Check off a stepnote_save({ title: "Auth approach", content: "Chose JWT because...", note_type: "decision", related_entity_type: "epic", related_entity_id: 1 })
comment_add({ task_id: 5, content: "Root cause was missing CORS headers" })tracker_search({ query: "authentication" }) → Search across everything
activity_log({ since: "2026-02-24T00:00:00" }) → What changed todaydepends_on: [2, 3] when creating/updating a tasktask_get to see both upstream dependencies and downstream dependentsCreate reusable task sets for repeated workflows:
template_create({ name: "feature_workflow", tasks: [
{ "title": "Design {feature} API", "priority": "critical" },
{ "title": "Implement {feature}", "priority": "high" },
{ "title": "Write tests for {feature}", "priority": "high" }
]})
template_apply({ template_id: 1, epic_id: 2, variables: { "feature": "user auth" } })tracker_dashboard at the start of a session~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.