athena

athena is a skill for Codex from taylorparsons/athena-skill. It costs 55 tokens per session (1,350 once invoked), scanned A, a copy of athena, MIT.

A process for delivering software changes from a product requirements document, with an audit trail covering requests, decisions, specifications, tasks, and commits. It uses a project script called owl to control access to certain records.

In plain words
What is it for?
Managing feature, bug-fix, and other repository changes through documented requirements, decisions, specifications, tasks, notes, and commits.
Why use it?
It keeps feature and bug work traceable and requires the original request to be recorded before changing requirements or code. It also defines which project documents may be read or edited directly.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: reads .claude/ paths; mentions subagents; mentions Claude Code.

Good fit Managing feature, bug-fix, and other repository changes through documented requirements, decisions, specifications, tasks, notes, and commits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/taylorparsons/athena-skill/athena
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add taylorparsons/athena-skill --skill athena
Clone the repo
git clone --depth 1 https://github.com/taylorparsons/athena-skill

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for athena

README.md
[![agentmods](https://agentmods.dev/badge/skills/taylorparsons/athena-skill/athena/github.svg)](https://agentmods.dev/skills/taylorparsons/athena-skill/athena)
Your own site
<a href="https://agentmods.dev/skills/taylorparsons/athena-skill/athena"><img src="https://agentmods.dev/badge/skills/taylorparsons/athena-skill/athena/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for athena

Your own site · 80×15
<a href="https://agentmods.dev/skills/taylorparsons/athena-skill/athena"><img src="https://agentmods.dev/badge/skills/taylorparsons/athena-skill/athena.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,350 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00055 $0.01350
Opus 5 $0.00028 $0.00675
Sonnet 5 $0.00011 $0.00270
Haiku 4.5 $0.00006 $0.00135

Measured 9d ago against content hash 20703f98ca6a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

athena scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 8 executable files (scripts/bootstrap_git_audit.py, scripts/commit_with_traceability.py, scripts/owl.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to athena — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/athena/SKILL.md · 88 lines

How it starts

The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ATHENA Loop

The audit trail lives in docs/ but is script-gated: never Read docs/requests.md, docs/decisions.md, docs/athena-index.md, or archived specs — all access goes through ./scripts/owl (deterministic, zero-token). You may Read/Edit directly only:

  • the active feature's docs/specs/<FEATURE_ID>/spec.md, tasks.md, notes.md
  • the docs/PRD.md sections you are changing — never the full file: locate the section with grep, read only that line range; one requirement → owl show <FR-ID>
  • docs/TRACEABILITY.md

1) Open the session

  • Claude Code: if the Athena Active Context memory is present, use it and skip the next step.
  • Otherwise run ./scripts/owl context — prints active feature, goal, IN PROGRESS/NEXT, recent CR/D IDs, and the latest request.
  • Repo has no docs/ audit files, or still has docs/progress.txt? See references/setup.md.
  • Summarize the session goal in one sentence before changing anything.

2) Capture input first

No PRD or code changes until the session's customer request is captured verbatim (redact secrets):

./scripts/owl add-request <<'EOF'
<verbatim customer request>
EOF

Returns the CR-... ID. No explicit request this session? Ask the user for one.

Whenever you interpret ambiguity, choose tradeoffs, or change scope:

./scripts/owl add-decision --cr <CR-ID> --prd "<PRD section>" <<'EOF'
Decision: <what>
Rationale: <why>
Alternatives considered: <rejected options and why>
EOF

3) Reflect in PRD and spec

  • If the newest CR is not reflected in docs/PRD.md, update the PRD first. Tag every added or changed requirement (Sources: CR-...; D-...) — at least one CR, plus a D whenever interpretation was needed.
  • Establish a FEATURE_ID (YYYYMMDD-short-name; ask if unclear). Ensure docs/specs/<FEATURE_ID>/spec.md and tasks.md exist (copy from templates/).
  • Traceability is mandatory: FRs have stable IDs and Sources:; acceptance scenarios have Verifies: FR-...; tasks have Implements: FR-.... Fix broken links before writing code.

Read the full file on GitHub · 88 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 88 lines · 55 tokens per session scan A 20703f98ca6a

Subscribe to this mod's changes

athena is a skill published in the GitHub repository taylorparsons/athena-skill (2 stars, last pushed 4d ago), licensed MIT. It adds 55 tokens to every session and 1,350 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to athena, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

project-graveyard

Scans the developer's machine for dead side projects, autopsies each one from its git history (died at the payments wall, killed by a newer project, finished but never shipped), surfaces their personal death patterns, and picks the corpse most worth resurrecting — then helps ship it. Use when the user mentions…

Shubhamsaboo/awesome-llm-apps · 127 tokens

commit-archaeologist

Reconstructs why code exists from local git history, including the introducing commit, later changes, current authors, repeated companion files, and likely intent. Use when the user asks "why does this code exist", "who wrote this function and why", or to "explain the history of this function" before a rewrite…

Shubhamsaboo/awesome-llm-apps · 82 tokens

scope-creep-detector

Analyzes git diffs against a stated intent to detect scope creep, unrelated files, broad pull requests, changes that grew beyond a fix, dependency additions, public API renames, config or CI edits, oversized hunks, and formatting-only files. Use when the user asks whether a change grew beyond the fix, a PR is too…

Shubhamsaboo/awesome-llm-apps · 98 tokens

git-workflow

Git workflow guidance for commits, branches, and pull requests.

agno-agi/agno · 15 tokens

mem0-test-integration

Verify a Mem0 integration produced by /mem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run /mem0-integrate…

mem0ai/mem0 · 207 tokens

marimo-pair

Work inside the user's live marimo notebook from the code editor: run Python in the same kernel the user does, inspect live notebook state, and commit durable notebook changes through code mode. Use whenever you create, analyze, or improve the user's marimo notebook.

marimo-team/marimo · 57 tokens