dinhanhthi

53 mods across 1 repository, 3 stars between them.

cf-plan-custom

03

dinhanhthi/coding-friend

Skill Claude CodeCodex

Force trigger: If the task description contains --skill or --agent flag → strip the flag from the description, pre-select the type (skill or agent) for the Skill Type Decision later, and skip detection + confirmation — go directly to the challenge below.

3 2d ago A 0 tokens original MIT

cf-review-custom

04

dinhanhthi/coding-friend

Skill Claude CodeCodex

After the standard review completes, check if any changed files require documentation updates.

3 2d ago A 0 tokens original MIT

cf-ship-custom

05

dinhanhthi/coding-friend

Skill Claude CodeCodex

This is a version bump + ship + release operation. Run these steps BEFORE the standard cf-ship workflow.

3 2d ago A 0 tokens original MIT

cf-explorer

06

dinhanhthi/coding-friend

Agent

Codebase explorer for understanding project structure, finding relevant files, tracing dependencies, and answering specific questions about code. Dispatched by cf-plan before planning, by cf-fix before diagnosing bugs, and by cf-ask for gathering code context. Trigger this agent when you need codebase context before…

3 2d ago A 191 tokens original MIT

cf-implementer

07

dinhanhthi/coding-friend

Agent

Implementation agent — direct coding by default, TDD opt-in. Use this agent when you need to implement code changes. Dispatched by cf-tdd for substantial implementations (3+ files, complex algorithms, multi-step features), by cf-plan for executing plan tasks, and by cf-fix for bug fixes. Trigger this agent when the…

3 2d ago A 213 tokens original MIT

cf-planner

08

dinhanhthi/coding-friend

Agent

Task decomposition and approach brainstorming agent. Use this agent when you need to break down a complex task into actionable steps, compare implementation approaches, or design a plan before coding. Dispatched by cf-plan for approach analysis. Trigger this agent when the task requires evaluating multiple strategies…

3 2d ago A 187 tokens original MIT

cf-reviewer-plan

09

dinhanhthi/coding-friend

Agent

Plan alignment review specialist. Checks whether code changes match the implementation plan. Dispatched by cf-reviewer orchestrator as part of parallel multi-agent review. Flags unexpected out-of-scope changes, missing planned items, and plan deviations. Skipped in QUICK review mode.

3 2d ago A 58 tokens original MIT

cf-reviewer-quality

10

dinhanhthi/coding-friend

Agent

Code quality review specialist. Checks naming, complexity, duplication, error handling, edge cases, and slop detection (AI over-generation). Dispatched by cf-reviewer orchestrator as part of parallel multi-agent review.

3 2d ago A 48 tokens original MIT

cf-reviewer-reducer

11

dinhanhthi/coding-friend

Agent

Review reducer agent. Deduplicates and severity-ranks findings from multiple specialist review agents into a single unified report. Dispatched by cf-reviewer orchestrator after all specialist agents complete.

3 2d ago A 43 tokens original MIT

cf-reviewer-rules

12

dinhanhthi/coding-friend

Agent

Project rules compliance specialist. Checks code changes against AGENTS.md project rules. Only flags violations of rules with MUST/SHOULD/ALWAYS/NEVER language. Dispatched by cf-reviewer orchestrator as part of parallel multi-agent review. Skipped in QUICK review mode.

3 2d ago A 63 tokens original MIT

dinhanhthi/coding-friend

Agent

Security review specialist. Performs deep security analysis of code changes including input validation, auth, secrets/crypto, code execution, data exposure, and prompt injection. Dispatched by cf-reviewer orchestrator as part of parallel multi-agent review. Includes exploit scenarios for Critical findings. Traces data…

3 2d ago A 73 tokens original MIT

cf-reviewer-tests

14

dinhanhthi/coding-friend

Agent

Test coverage review specialist. Checks whether new code paths are tested, test quality, edge case coverage, and regression prevention. Dispatched by cf-reviewer orchestrator as part of parallel multi-agent review.

3 2d ago A 45 tokens original MIT

cf-reviewer

15

dinhanhthi/coding-friend

Agent

Code review orchestrator. Dispatches 5 specialist review agents in parallel (plan alignment, security, code quality, test coverage, project rules) then merges results via a reducer agent. Dispatched by cf-review and cf-ship for thorough review before merge. Trigger this agent when the user asks to review code changes…

3 2d ago A 214 tokens original MIT

cf-writer-deep

16

dinhanhthi/coding-friend

Agent

Deep reasoning document writer for nuanced technical content, complex multi-concept synthesis, or very long context. Dispatched by cf-learn when deep reasoning is enabled, and by skills needing thorough technical explanations. Trigger this agent instead of cf-writer when the content involves advanced architecture…

3 2d ago A 139 tokens original MIT

cf-writer

17

dinhanhthi/coding-friend

Agent

Lightweight document writer for skills that generate markdown files. Dispatched by cf-learn, cf-remember, cf-scan, cf-fix, and cf-ask for writing docs, memory files, and notes. Trigger this agent when a skill needs to write or update markdown documents — e.g. "write the doc", "save to memory", "create a note", "write…

3 2d ago A 154 tokens original MIT

cf-advise

18

dinhanhthi/coding-friend

Skill Claude CodeCodex

Decision advisory via structured interview — never writes code or plans. Use when the user wants help DECIDING — e.g. "should I", "is X worth it", "which approach", "help me decide between A and B", "am I overthinking this", "what would you recommend", "pros and cons of". Unlike /cf-plan (builds) or /cf-ask (looks up…

3 2d ago A 94 tokens original MIT

cf-ask

19

dinhanhthi/coding-friend

Skill Claude CodeCodex

Quick Q&A about the codebase → docs/memory. Use for focused project questions — e.g. "how does X work?", "where is Y defined?", "what's the flow for Z?", "explain this module", "why is this done this way?". Unlike /cf-research, one answer.

3 2d ago A 68 tokens original MIT

cf-checkpoint-from

20

dinhanhthi/coding-friend

Skill Claude CodeCodex

Load a saved checkpoint as working context, then do the next ask. Triggers: "resume from checkpoint", "load checkpoint", "continue from checkpoint", "cf-checkpoint-from", "restore conversation context". First word is the slug; --recap prints a summary. Does NOT create checkpoints (use /cf-checkpoint).

3 2d ago A 73 tokens original MIT

cf-checkpoint

21

dinhanhthi/coding-friend

Skill Claude CodeCodex

Save a conversation checkpoint (goal, decisions, breaking changes, next steps) for a DIFFERENT conversation. Triggers: "save a checkpoint", "checkpoint this conversation", "capture context", "snapshot the conversation", "cf-checkpoint". Unlike /compact (same chat) or /cf-remember (project facts). Slash-only — does NOT…

3 2d ago B 77 tokens original MIT

cf-commit

22

dinhanhthi/coding-friend

Skill Claude CodeCodex

Smart conventional commit with diff analysis. Triggers: "commit this", "commit my changes", "save my work", "create a commit", "git commit", "stage and commit".

3 2d ago A 42 tokens original MIT

cf-design

23

dinhanhthi/coding-friend

Skill Claude CodeCodex

UI design workflow — scan patterns, design new UI, or modify UI consistently. Use to redesign a component/page, change colors/typography/style, or extract the design system. Triggers: "make it look like", "update the styling", "redesign this", "match the existing style", "add a dark mode", "make it more minimal".

3 2d ago A 76 tokens original MIT

cf-fix

24

dinhanhthi/coding-friend

Skill Claude CodeCodex

Quick bug fix workflow. Use when the user reports a bug or broken behavior — e.g. "fix this", "it's broken", "not working", "there's a bug", "this crashes", "debug this", "it throws", "failing test", "regression", "unexpected behavior". Also triggers on stack traces or error messages.

3 2d ago A 75 tokens original MIT