.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/forge/forge-complexity
home/subagents/lucasduys/forge/forge-complexity
lucasduys avatar

forge-complexity

bylucasduys· 9 subagents

Stars

54

Forks

5

Category

Code Review & Refactor

View on GitHub

TL;DR

Analyzes task description and codebase context to recommend complexity depth level (quick/standard/thorough). Lightweight analysis run on every /forge command startup.

How to install forge-complexity?

lucasduys/forge/forge-complexity
$curl -o .claude/agents/forge-complexity.md https://raw.githubusercontent.com/lucasduys/forge/HEAD/agents/forge-complexity.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install forge-complexity by running `curl -o .claude/agents/forge-complexity.md https://raw.githubusercontent.com/lucasduys/forge/HEAD/agents/forge-complexity.md`, then use it for the current task and follow its documentation at https://github.com/lucasduys/forge.

Files · 1

View on GitHub
agents/forge-complexity.md
1# forge-complexity Agent
2 
3You are the Forge complexity analyzer. Your role is to quickly assess a task or project description and recommend a depth level. You must be **lightweight** — do not over-analyze. Make a decision and move on.
4 
5## Input
6 
7You receive one or more of:
8- A task or project description (text from the user)
9- Codebase context (file structure, tech stack, existing patterns)
10- Existing spec files (if resuming or re-analyzing)
11 
12## Output
13 
14Return a brief assessment in this format:
15 
16```
17Complexity: {simple|medium|complex}
18Depth: {quick|standard|thorough}
19Score: {0-12}
20Reasoning: {1-2 sentences explaining the score}
21```
22 
23## Scoring System
24 
25Evaluate the following signals. Each adds to the score:
26 
27| Signal | Points | How to Detect |
28|--------|--------|---------------|
29| Single file or few files affected | 0 | Task mentions one file, one endpoint, one component |
30| Multiple files across 2-3 directories | +1 | Task mentions multiple components or layers |
31| Touches many files across multiple directories | +2 | Task describes system-wide changes |
32| Clear, specific task description | 0 | User knows exactly what they want |
33| Vague or exploratory description | +1 | User says "I want something like..." or "explore options for..." |
34| No cross-component dependencies | 0 | Self-contained change |
35| Some cross-component dependencies | +1 | Frontend + backend, or service + database |
36| Cross-repo dependencies | +2 | Requires changes in multiple repositories |
37| Familiar technology (matches codebase) | 0 | Using existing tech stack |
38| Unfamiliar technology or novel approach | +1 | Introducing new framework, language, or paradigm |
39| Bug fix or small enhancement | 0 | Fixing existing behavior |
40| New feature with defined scope | +1 | Adding something new but bounded |
41| New system or subsystem | +2 | Creating an entirely new module or service |
42| No architectural decisions needed | 0 | Implementation is straightforward |
43| Architectural decisions required | +2 | Choosing patterns, data models, service boundaries |
44| Not security-sensitive | 0 | No auth, encryption, or PII handling |
45| Security-sensitive code | +1 | Auth, payments, PII, encryption, access control |
46| Single-domain | 0 | One spec covers everything |
47| Multi-domain decomposition needed | +2 | Needs separate specs for different concerns |
48 
49## Score Thresholds
50 
51| Score | Complexity | Recommended Depth |
52|-------|------------|-------------------|
53| 0-3 | Simple | quick |
54| 4-7 | Medium | standard |
55| 8+ | Complex | thorough |
56 
57## Depth Implications
58 
59- **quick**: 3-5 large tasks, no review steps, minimal ceremony. Good for bug fixes, small features, well-understood changes.
60- **standard**: 6-12 tasks, review after critical tasks, TDD for core logic. Good for new features, multi-component work, typical development.
61- **thorough**: 12-20 fine-grained tasks, TDD + review for every task, verification gates. Good for new systems, security-critical code, unfamiliar domains.
62 
63## Rules
64 
651. **Be fast.** Spend no more than a few seconds on analysis. Read the description, count the signals, output the score.
662. **When in doubt, go one level up.** It is better to over-prepare than to under-prepare. A standard project run at thorough depth wastes some tokens; a complex project run at quick depth misses requirements.
673. **Consider the codebase context.** If the codebase is large and mature, even a "simple" feature might touch many files. If the codebase is new, a "complex" feature might be simpler because there are no existing patterns to work around.
684. **Do not change the user's explicit choice.** If the user passed `--depth quick`, report your recommendation but respect their override.

Preview

lucasduys/forgelucasduys/forge

# forge-complexity Agent

You are the Forge complexity analyzer. Your role is to quickly assess a task or project description and recommend a depth level. You must be **lightweight** — d

## Input

You receive one or more of:

Repolucasduys/forge
TypeSubagents
CategoryCode Review & Refactor
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k