Local semantic memory for AI agents
SaferSkills independently audited coeus (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.
Coeus is a retrieval research rewrite built around explicit experiment specs, deterministic corpus ingestion, baseline retrieval stages, and persisted evaluation artifacts.
Requires Python 3.10+.
uv tool install git+https://github.com/spideynolove/coeusThe installable command surface is intentionally small:
coeus run path/to/spec.json
coeus show-run <run_id>
coeus list-runscoeus run loads an experiment spec, persists the resolved spec in the artifact store, executes the runner, and prints the saved run summary as JSON.
coeus show-run prints a persisted run summary from the artifact store.
coeus list-runs lists runs with optional --spec-id and --status filters.
An experiment spec is JSON with:
corpusstageseval_setmetadataCorpus and evaluation paths may be absolute or relative to the spec file.
Example:
{
"corpus": {
"type": "local_directory",
"path": "../fixtures/corpus",
"extensions": [".py"]
},
"stages": [
{
"name": "candidate_gen",
"type": "lexical",
"params": {"limit": 10}
},
{
"name": "assembly",
"type": "simple",
"params": {"max_chunks": 5}
}
],
"eval_set": {
"path": "../fixtures/evaluation/eval.jsonl",
"format": "jsonl"
}
}Runs are stored in a local filesystem artifact root with:
specs/runs/<run_id>/coeus-mcp exposes the same rewrite core through three thin tools:
run_experimentget_run_summaryget_runsThe MCP adapter calls the same runner and artifact-store code path as the CLI.
Register mcporter against the installed coeus-mcp executable on PATH, not a checkout file path:
npx mcporter config add coeus --command coeus-mcp --arg --transport --arg stdioIf you want to verify the registration before making calls, this should succeed:
npx mcporter list coeus --schemasource /home/hung/env/.venv/bin/activate
uv pip install -e .
python -m pytest tests/ -qMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.