tomzx

60 mods across 1 repository, 5 stars between them.

agents AGENTS.md

01

tomzx/agents

Instructions file CodexOpenCode

Instructions for tomzx/agents, covering general, python, per-repository instructions, per-machine instructions and github cli.

5 4d ago A 748 tokens original MIT

agents CLAUDE.md

02

tomzx/agents

Instructions file

Instructions for tomzx/agents, a project described as: A library of composable skills, agents, and conventions that teach agents how to perform repeatable software-engineering and knowledge-work tasks.

5 4d ago A 3 tokens copy · 100% MIT

tomzx/agents

Skill Claude CodeCodex

Curate the agent-maintained blog section (blog.tomrochette.com-content) by following the Daily refresh procedure in agents/AGENTS.md, pulling, working the article queue, updating and fact-checking articles, verifying links, appending to agents/log.md, and committing scoped to agents/. Use when the user says…

5 4d ago A 98 tokens original MIT

analyze-git-churn

04

tomzx/agents

Skill Claude CodeCodex

Analyze git history to identify high-churn files and suggest targeted improvements such as refactoring, test coverage, dead code removal, or library replacements.

5 4d ago A 36 tokens original MIT

tomzx/agents

Skill Claude CodeCodex

Analyze a set of code changes (diff or files) and produce a structured test coverage report with three parts: introduced tests, change coverage, and uncovered code. Called by review-pr, review-implementation, and verify-pr; can also be invoked directly on any diff.

5 4d ago A 60 tokens original MIT

arxiv-article

06

tomzx/agents

Skill Claude CodeCodex

Downloads an arXiv HTML article, converts it to markdown with pandoc, archives it, and returns a structured summary. Use when processing a single arXiv paper given its HTML URL (e.g., https://arxiv.org/html/2504.12345). Called by the arxiv-catchup skill but can also be invoked directly.

5 4d ago A 76 tokens original MIT

arxiv-catchup

07

tomzx/agents

Skill Claude CodeCodex

Fetches new arXiv cs.AI papers published since the last processed date, processes each paper's HTML version via the arxiv-article skill, and advances the date checkpoint. Use when the user says /arxiv-catchup, catch up on arXiv, or wants to read recent AI papers.

5 4d ago A 70 tokens original MIT

audit-attention

08

tomzx/agents

Skill Claude CodeCodex

Audit how your time splits between compounding and depreciating activities using the two-year test. Use when the user says /audit-attention, wants to check attention allocation, asks "where is my time going", or wants to know what to delegate vs. protect.

5 4d ago A 57 tokens original MIT

audit-compatibility

09

tomzx/agents

Skill Claude CodeCodex

Audit the codebase for compatibility, the ISO/IEC 25010 characteristic covering co-existence (running alongside other software without conflict) and interoperability (exchanging data via standards). Finds hardcoded shared resources, dependency conflicts, missing API versioning, non-standard data formats, and brittle…

5 4d ago A 117 tokens original MIT

audit-dependencies

10

tomzx/agents

Skill Claude CodeCodex

Audit project dependencies for outdated versions, known vulnerabilities, unmaintained packages, and license issues, then produce a prioritized upgrade and replacement plan.

5 4d ago A 32 tokens original MIT

tomzx/agents

Skill Claude CodeCodex

Audit whether the software actually does what it should, completely and correctly. This is the Functional suitability characteristic of the ISO/IEC 25010 software quality model (completeness, correctness, appropriateness). Cross-checks implemented behavior against requirements in .sdlc/ and surfaces stubs, TODOs…

5 4d ago A 132 tokens original MIT

tomzx/agents

Skill Claude CodeCodex

Audit the codebase for maintainability, the ISO/IEC 25010 characteristic covering modularity, reusability, analyzability, modifiability, and testability. Computes architectural metrics (coupling, fan-out, circular dependencies, layering violations, God modules) that the find- family does not cover, and aggregates…

5 4d ago A 138 tokens original MIT

audit-observability

13

tomzx/agents

Skill Claude CodeCodex

Identify missing logging, metrics, tracing, and alerting for production services.

5 4d ago A 20 tokens original MIT

tomzx/agents

Skill Claude CodeCodex

Audit the codebase for performance efficiency, the ISO/IEC 25010 characteristic covering time behavior, resource utilization, and capacity. Finds N+1 queries, missing indexes, unbounded operations, blocking I/O in hot paths, algorithmic complexity, and missing backpressure. Use when the user says…

5 4d ago A 115 tokens original MIT

audit-portability

15

tomzx/agents

Skill Claude CodeCodex

Audit the codebase for portability, the ISO/IEC 25010 characteristic covering adaptability (runs in different environments), installability (easy to install), and replaceability (easy to swap out or migrate off). Finds hardcoded paths/hosts/OS assumptions, config baked into code (violating 12-factor), vendor lock-in…

5 4d ago A 138 tokens original MIT

audit-reliability

16

tomzx/agents

Skill Claude CodeCodex

Audit the codebase for reliability, the ISO/IEC 25010 characteristic covering maturity, availability, fault tolerance, and recoverability. Finds swallowed exceptions, missing timeouts on network calls, missing retries/circuit breakers on external dependencies, non-idempotent operations, missing transaction boundaries…

5 4d ago A 139 tokens original MIT

audit-sdlc

17

tomzx/agents

Skill Claude CodeCodex

Run multiple audit skills against the project and produce a unified findings report with prioritized action items.

5 4d ago A 23 tokens original MIT

audit-security

18

tomzx/agents

Skill Claude CodeCodex

Scan the codebase for code-level security vulnerabilities including hardcoded secrets, injection risks, missing auth checks, and insecure patterns, then produce a prioritized remediation plan.

5 4d ago A 35 tokens original MIT

audit-usability

19

tomzx/agents

Skill Claude CodeCodex

Audit the software's interfaces (CLI, API, and web UI) for usability, the ISO/IEC 25010 characteristic covering recognizability, learnability, operability, user error protection, and accessibility. Finds missing help text, inconsistent flags, poor error messages, missing confirmations on destructive actions, and…

5 4d ago A 122 tokens original MIT

automate-session

20

tomzx/agents

Skill Claude CodeCodex

Analyze what was done in the current session and surface concrete ways the workflow could have been automated to remove the user from the loop. Use when the user asks /automate-session, "how could this be automated?", or "what could we automate from this session?".

5 4d ago A 57 tokens original MIT

backpropagate-sdlc

21

tomzx/agents

Skill Claude CodeCodex

Walk the SDLC artifact chain in reverse (code back to issue) to verify end-to-end consistency and traceability. Use when the user says /backpropagate-sdlc, "backpropagate", "verify SDLC trace", or wants to detect drift accumulated across artifacts after the forward pipeline has run.

5 4d ago A 70 tokens original MIT

check-duplicates

22

tomzx/agents

Skill Claude CodeCodex

Check a GitHub issue for duplicate issues and existing fix PRs before investing effort.

5 4d ago A 21 tokens original MIT

check-issue-status

23

tomzx/agents

Skill Claude CodeCodex

Determine whether a GitHub issue is already addressed in the codebase by extracting its requested behavior and verifying it against the code. Works for feature requests and bug reports in any format, with or without formal acceptance criteria. Use before starting work on an issue, or to triage stale issues, to avoid…

5 4d ago A 116 tokens original MIT

check-issues-status

24

tomzx/agents

Skill Claude CodeCodex

Orchestrate check-issue-status across a list of issues to find which are already addressed in the code. Supports checking every open issue in a repository, issues authored by a specific user, or issues matching a custom search query, and these scopes combine. Use to triage a backlog for stale or already-implemented…

5 4d ago A 126 tokens original MIT