ronaknnathani

27 mods across 1 repository, 3 stars between them.

build-write-like-me

01

ronaknnathani/relay

Skill Claude CodeCodex

Use this skill whenever the user wants to capture, clone, or codify their own (or someone's) writing voice into a reusable skill. Trigger phrases include: "build a write-like-me skill", "build a sound-like-me skill", "analyze how I write", "make agents write or draft in my voice", "learn my style from my docs and…

3 4d ago A 226 tokens original MIT

clarify

02

ronaknnathani/relay

Skill Claude CodeCodex

Turn a vague or underspecified task into a crisp requirements + testable acceptance-criteria document by closing the gap between what was asked and what is actually wanted. Use at the start of any non-trivial task before planning, whenever the goal is fuzzy ("make it faster", "make it more robust", "add validation")…

3 4d ago A 102 tokens original MIT

commit

03

ronaknnathani/relay

Skill Claude CodeCodex

Create a single well-formed git commit from the working changes, following the repo's AGENTS.md and recent commit-message conventions. Use when the caller wants only to commit — not push and not open a PR (for that, use open-pr).

3 4d ago A 53 tokens original MIT

deliver-pr

04

ronaknnathani/relay

Skill Claude CodeCodex

Deliver one change end to end as a single pull request — clarify → plan → implement → simplify → review → validate → open-pr — resuming from wherever it left off. Use to take a task from intent to an open, mergeable PR with each phase run as a focused sub-agent. This is the default workflow the binary launches when…

3 4d ago A 82 tokens original MIT

explore

05

ronaknnathani/relay

Skill Claude CodeCodex

Build a verified, read-only understanding of a codebase or a slice of it — entry points, code flow, architecture, module boundaries, dependencies, data flow, build/test systems, and existing patterns. A shared sub-skill that clarify, plan, implement, and review call on demand when they need codebase context; not…

3 4d ago A 78 tokens original MIT

implement

06

ronaknnathani/relay

Skill Claude CodeCodex

Execute an implementation plan (from plan) task by task, writing the code and tests and leaving the system green at every step. Use once you have an agreed plan or a clear next slice of work to build. It does not plan and does not open a PR — it turns a plan into working, tested code.

3 4d ago A 67 tokens original MIT

open-pr

07

ronaknnathani/relay

Skill Claude CodeCodex

Stage, commit, push, and open a pull request following the author's repository and AGENTS.md conventions — repo-style commit messages, a prose PR summary, and a Testing Done command list. Use when work is finished and the caller wants it committed and a PR opened. Supports --draft and an optional local review before…

3 4d ago A 68 tokens original MIT

plan

08

ronaknnathani/relay

Skill Claude CodeCodex

Turn a clarified requirements artifact into a concrete, executable implementation plan — a decisive architecture blueprint and a phased build sequence with exact file paths. Use after requirements are pinned down (e.g. by clarify) and before writing code, whenever a multi-step change needs a design and a task…

3 4d ago A 68 tokens original MIT

pr-fix

09

ronaknnathani/relay

Skill Claude CodeCodex

Bring a PR to mergeable — fix CI failures, address review comments, and resolve merge conflicts, looping until checks are green and every comment is handled. Use after opening a PR when CI is red, reviewers have left comments, or the branch conflicts with its base.

3 4d ago A 58 tokens original MIT

pr-monitor

10

ronaknnathani/relay

Skill Claude CodeCodex

Monitor one open PR until it is merged — each tick detect CI failures, review comments, staleness, and conflicts, delegate the fixing to pr-fix, re-arm auto-merge, and stop at merge. Use after open-pr to drive a PR to merged with near-zero steering, via a native loop when one exists or one bounded tick per resume…

3 4d ago A 77 tokens original MIT

rebase

11

ronaknnathani/relay

Skill Claude CodeCodex

Use when you need to rebase the current branch onto main, resolve merge conflicts, and force-push.

3 4d ago A 24 tokens original MIT

relay-archive

12

ronaknnathani/relay

Skill Claude CodeCodex

Use when a project's PR is merged and you want to clean up the worktree while preserving notes and plans.

3 4d ago A 25 tokens original MIT

relay-status

13

ronaknnathani/relay

Skill Claude CodeCodex

Use when checking the status of active or archived development projects.

3 4d ago A 14 tokens original MIT

review

14

ronaknnathani/relay

Skill Claude CodeCodex

Review a change for correctness, quality, and guideline compliance using a library of specialized reviewer roles. Use before opening a PR, after finishing a chunk of work, or to review an existing PR. Two output modes — a local severity-ranked report for a fix loop (default), or inline GitHub comments (--comment).…

3 4d ago A 83 tokens original MIT

code-reviewer

15

ronaknnathani/relay

Agent

Review code for adherence to project guidelines, style guides, and best practices. Use after writing or modifying code, especially before committing changes or creating pull requests. Checks for style violations, potential issues, and adherence to the patterns in the repo's guideline files. The reviewer needs to know…

3 4d ago A 92 tokens original MIT

comment-analyzer

16

ronaknnathani/relay

Agent

Analyze code comments for accuracy, completeness, and long-term maintainability. Use after generating large documentation comments or docstrings, before finalizing changes that add or modify comments, when reviewing existing comments for technical debt or comment rot, and when verifying that comments accurately…

3 4d ago A 61 tokens copy · 86% MIT

git-history

17

ronaknnathani/relay

Agent

Review a change against the history of the code it touches. Use git blame and log to catch changes that contradict why the surrounding code exists — reintroducing a fixed bug, removing a guard that was added on purpose, or undoing a deliberate decision. Reports only high-confidence findings backed by a specific past…

3 4d ago A 66 tokens original MIT

pr-test-analyzer

18

ronaknnathani/relay

Agent

Review a set of changes for test coverage quality and completeness. Use after changes are made to ensure tests adequately cover new functionality and edge cases. Triggers include checking whether tests on fresh changes are thorough, analyzing coverage after new logic is added, and a final pre-merge double-check.

3 4d ago A 62 tokens original MIT

prior-pr-history

19

ronaknnathani/relay

Agent

Review a change against prior pull requests. Use the PR/commit history to catch an approach that was already tried, discussed, or reverted — so the change does not re-litigate a settled decision or redo work that was rejected. Reports only high-confidence findings backed by a specific prior PR or revert.

3 4d ago A 65 tokens original MIT

security

20

ronaknnathani/relay

Agent

Security review of a change. Use when the diff touches a trust boundary, parses input, handles auth/authz, moves user or secret data, shells out, or feeds untrusted text to an LLM. Runs a fast STRIDE pass and reports only high-confidence, exploitable findings with a concrete fix.

3 4d ago A 64 tokens original MIT

ronaknnathani/relay

Agent

Review code changes to identify silent failures, inadequate error handling, and inappropriate fallback behavior. Use proactively after completing work that involves error handling, catch blocks, fallback logic, or any code that could suppress errors.

3 4d ago A 47 tokens original MIT

ronaknnathani/relay

Agent

Expert analysis of type design. Use when introducing a new type to ensure it follows best practices for encapsulation and invariant expression, when reviewing all types being added in a change, and when refactoring existing types to improve their design quality. Provides both qualitative feedback and quantitative…

3 4d ago A 71 tokens original MIT

simplify

23

ronaknnathani/relay

Skill Claude CodeCodex

Reduce complexity in recently changed code — cut needless abstraction, dead code, and duplication; improve names and structure — WITHOUT changing behavior. Quality only; it does not hunt for bugs (use review for that). Use after implementing a chunk of work, before review, or whenever a diff feels more complicated…

3 4d ago A 108 tokens original MIT

stack-ship

24

ronaknnathani/relay

Skill Claude CodeCodex

Use when given a design doc or feature goal to deliver end-to-end as a stack of small PRs, or to resume an active stack. Decompose into acceptance criteria and an interface-first PR plan, delegate build and monitor work, keep durable state, use native loop/goal harnesses when available, use capability-based monitor…

3 4d ago A 97 tokens original MIT