analyzing-codebases
Detects project languages and monorepo state, runs language-appropriate static analysis (dependency graph, complexity, duplication, semantic patterns), and…
Explores user workflows through targeted questions about pipeline modes, pain points, routine tasks, and human intervention points to inform agent system design. Use when exploring workflows after analysis. Use when user says "explore workflows", "brainstorm workflows", "what
$ npx -y skills add wayne930242/Reflexive-Claude-Code --skill brainstorming-workflows --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/brainstorming-workflowsContext preview
The summary Claude sees to decide when to auto-load this skill.
Explores user workflows through targeted questions about pipeline modes, pain points, routine tasks, and human intervention points to inform agent system design. Use when exploring workflows after analysis. Use when user says "explore workflows", "brainstorm workflows", "what
name: brainstorming-workflows description: Explores user workflows through targeted questions about pipeline modes, pain points, routine tasks, and human intervention points to inform agent system design. Use when exploring workflows after analysis. Use when user says "explore workflows", "brainstorm workflows", "what should I automate". Use when called by analyzing-agent-systems.
**Brainstorming workflows IS targeted exploration of how users actually work, what frustrates them, and what can be automated.**
The analysis report tells you what the system looks like; brainstorming tells you what the user needs. These are different data sources — never skip one because the other exists.
**Core principle:** Ask about failures before wishes.
**Pattern:** Chain **Handoff:** user-confirmation **Next:** `planning-agent-systems` **Chain:** main
Follow [task initialization protocol](../../references/task-initialization.md).
**Tasks:** 1. Import analysis findings 2. Pipeline mode exploration 3. Pain point discovery 4. Routine task identification 5. Human intervention point discovery 6. Component type judgment 7. Produce workflow summary
Announce: "Created 7 tasks. Starting execution..."
**Goal:** Load analysis report and let user select which findings to address.
**If analysis report path was provided:** 1. Read the analysis report 2. Present restructuring recommendations grouped by priority 3. Ask: "The analysis report suggests these improvements. Which ones do you want to address this time?" 4. Present as checklist for user to select 5. Selected items become requirements in workflow summary
**If no analysis report:** Note that no analysis was done, proceed to Task 2.
**Skip questions in later tasks that the analysis already answered.**
**Verification:** User has confirmed which findings to address (or no analysis exists).
**Goal:** Determine how workflows connect and what state management they need.
**Important:** Read [references/exploration-questions.md](references/exploration-questions.md) for the question bank (Pipeline section).
**Rules:**
**Verification:** Each identified workflow has mode + state management decision.
**Goal:** Find where the current agent system fails or is missing.
**Important:** Read [references/exploration-questions.md](references/exploration-questions.md) for the question bank (Pain Point section).
**Rules:**
**Verification:** Pain points documented with root cause and component type.
**Goal:** Find repetitive small tasks that could be automated.
**Important:** Read [references/exploration-questions.md](references/exploration-questions.md) for the question bank (Routine Task section).
**Rules:**
**Verification:** Routine tasks documented with automation approach.
**Goal:** Find where humans must review, approve, or intervene in the workflows.
**Important:** Read [references/exploration-questions.md](references/exploration-questions.md) for the question bank (Human-in-the-Loop section).
**Rules:**
**Required question — quality gate loop:**
Ask: "When a reviewer reports issues, do you want fixes applied automatically before re-reviewing (auto loop), or do you want to confirm each fix before continuing (manual loop)?"
Record the answer — this determines whether review skills use `auto-invoke` or `user-confirmation` handoff to the next fixing step.
**Verification:** Intervention points documented with type and affected workflow step. Quality gate loop preference recorded.
**Goal:** Map every discovered need to the right component type.
For each pain point, routine task, intervention point, and analysis finding:
**Present the mapping to user for confirmation.**
Challenge any over-engineering: "Can this be a rule instead of a skill?"
Read [references/anthropic-patterns.md](references/anthropic-patterns.md) for the complexity ladder — prefer lowest level that works.
**Verification:** Every need mapped to component type, user confirmed.
**Goal:** Write structured summary to `.rcc/{timestamp}-workflows.md`.
**Important:** Read [references/summary-template.md](references/summary-template.md) for the full summary format.
**Include:** pipeline mode mapping, pain points, routine tasks, human intervention points, component recommendations.
**Handoff:** "Workflow summary complete. Continue to plan agent system components?"
A Claude Code plugin marketplace for skills-driven Agentic Context Engineering (ACE) — build, analyze, and maintain agent systems with structured workflows.
Repo: wayne930242/Reflexive-Claude-Code
Detects project languages and monorepo state, runs language-appropriate static analysis (dependency graph, complexity, duplication, semantic patterns), and…
Executes a refactor plan phase-by-phase on a dedicated branch with per-phase commits and mandatory reviewer checkpoints. Use when characterization-tests…
Writes AGENTS.md per subproject, archives run artifacts, and suggests rcc handoff conditionally. Use when verifying-refactors passes (PASS or…
Converts a refactor map into a phased plan using parallel-change, branch-by-abstraction, or strangler fig patterns. Use when user has approved the refactor map…
Adds golden/snapshot tests to untested hotspot modules before refactoring. Use when refactor plan marks any phase with…
Validates hard structural rules (no cycles, file/fn line caps, cognitive/cyclomatic complexity) and runs mutation testing on touched modules. Use when…