All authors
felipemelendez avatar

Claude Skills by felipemelendez

github.com/felipemelendez
19 skillsA× 190 installs5 views
BrainstormingA

Use when starting creative work — a new feature, added functionality, a system design, or a behavior change — before any code is written. Not for one-line fixes, mechanical chores, or when an approved spec already exists.

ai-agentsgobash
0
3
Dispatching Parallel AgentsA

Use when 3+ tasks are independent — no shared files, no order dependency — and can run concurrently. Fan-out only; per-task review happens after all return.

ai-agentsrustbash
0
3
Dispatching SubagentsA

Use when running plan tasks sequentially with per-task two-stage review — the default for tasks with dependencies, sensitive code, or shared files another task changed.

ai-agentsrustgo
0
3
Executing PlansA

Use when you have a written plan and need to drive it task-by-task to completion. Top-level orchestrator that routes each task to sequential or parallel dispatch and tracks state.

ai-agentsrustgo
0
3
Finishing A BranchA

Use when implementation is complete and tests pass. Decides between merge, PR, keep, or discard — without destructive actions unless the user confirms.

ai-agentsgobash
0
3
Handing Off To Fresh ContextA

Use when context is filling on a long task and you should leave a short note so work resumes cleanly after the conversation is compacted.

ai-agentsgit
0
3
Managing MemoryA

Use when the user says "remember", "save this", "I told you before", or "forget that". Classifies notes into Claude Code's native CLAUDE.md and research-gate state.

ai-agentsrustgo
0
3
Receiving Code ReviewA

Use when responding to code review feedback — from a human, from another agent, or from the two-stage review flow. Resists performative agreement and blind implementation.

ai-agentsgocode-review
0
3
Requesting Code ReviewA

Use when a diff is complete and about to be merged, opened as a PR, or called done. Runs the two-stage review plus an optional security pass. Not for mid-task or incomplete diffs.

ai-agentsrustgo
0
3
Research ClassifierA

Use when about to invoke brainstorming or writing-plans, before a spec or plan is committed. Decides whether to verify API surfaces against current docs first.

ai-agentsrustgo
0
3
Systematic DebuggingA

Use when a bug, test failure, exception, regression, or unexpected behavior appears, before proposing or applying a fix — it forces root-cause investigation first. Not for the expected red phase of TDD: a failing test you just wrote is progress, not a bug. Runs before test-driven-development when both match.

developmentgodebugging
0
3
Test Driven DevelopmentA

Use when implementing a feature or bugfix where tests are practical, before writing implementation code. Enforces red-green-refactor with a verified red phase. Not for docs-only or config-only changes with no testable behavior, and not before systematic-debugging when the trigger was a failure rather than new work.

ai-agentsgotesting
0
3
Using Git WorktreesA

Use when work needs isolation from the current branch — long-running feature, risky refactor, parallel attempt. Creates and tracks a worktree without touching unrelated state.

ai-agentsgoshell
0
3
Using OrchestratorA

Use when starting any session in an LLM Orchestrator project. Establishes the Concise Agent Protocol response shapes and mandates skill invocation before any response or action.

ai-agentsgodebugging
0
3
Using WorkflowsA

Use when deciding whether an already-chosen fan-out (multi-dimension review, parallel implementation, multi-source research) runs on the Workflow tool or inline. Do not use to decide whether to parallelize at all — that is dispatching-parallel-agents.

ai-agentsjavascripttypescript
0
3
Verification Before CompletionA

Use when about to claim work is done, fixed, passing, or ready to merge — it forces a real run of the verifying command first. Not for reporting a failure honestly, which needs no gate. Runs last, after any review skill.

ai-agentsgobash
0
3
Writing PlansA

Use when a spec is approved and implementation has not started. Produces a dated, checklist-shaped plan file that another agent (or you) can execute task-by-task. Not for work already covered by an existing plan, and not before brainstorming has produced the spec.

ai-agentsgoapi
0
3
Writing SkillsA

Use when adding a new skill or editing an existing one. Not for commands (commands/*.md) or agent definitions.

ai-agentsgoapi
0
3
TemplatesA

Use when <trigger>. Not for <adjacent non-trigger>.

ai-agentsgo
0
3