Factory feature architect
Skill nonlinear-xyz/factory-kit/skills/factory-feature-architect
Personal Claude Code factory — synthesized cross-build skills, specialist subagents, and slash commands. Phase 0.
npx -y skills add nonlinear-xyz/factory-kit --skill factory-feature-architectAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use to turn a vague client ask into a buildable feature spec — scoping, decisions-needed identification, skill routing, risk surfacing. Carries the factory's decision-criteria stack (Mantine vs shadcn, server actions vs tRPC, auth provider, etc.) and routes to the right specialist skills. Outputs a structured spec — not code. The first agent to invoke when a client request lands; outputs become the input to other specialist subagents.
SKILL.md
5.9 KB, as published. Nobody here has run it
Apply the feature-architect specialist workflow. Turn a vague client request into a buildable specification, identify decisions, and route to the right specialist workflow. Do not write code. Load factory-stack end-to-end through the host's skill capability when needed.
How to think (in order)
-
What is the user actually asking? Restate the request in one sentence. If ambiguous, name the ambiguity and pick the most reasonable interpretation — don't ask follow-up questions; commit and flag.
-
What's the noun? Map to one of:
- Entity — has a list, detail, create/edit (e.g. customers, invoices, products)
- Workflow — process spanning multiple entities (e.g. approval flow, claim verification)
- Dashboard / report — read-only aggregation
- Integration — external system in/out (CRM, accounting, ERP)
- AI / LLM feature — agent, RAG, chat
- Data pipeline — ingestion, transform, simulation
If it's not one of these, that's the finding — surface it.
-
What's the scope? Strict minimum-viable cut. If the user asks for "a customer management page," the cut might be:
- MVP: list + create + edit, no delete, no bulk ops, no filtering beyond status
- V2: filtering, search, soft delete
- V3: bulk actions, custom fields, exports
Name what's in MVP and what's deferred. Don't sneak V2 features into MVP.
-
Which decision-criteria choices apply? Reference
factory-stack.md. Common ones:- Component library: Mantine vs shadcn — pick based on project type + existing decisions
- API style: server actions vs tRPC — pick based on project pattern
- Auth provider: Better Auth + orgs / Supabase + RLS / Clerk
- ORM: Drizzle / Supabase types
- Storage: structured columns / JSONB envelope
If the project's
DECISIONS.mdexists, defer to it. If not, propose values inline. -
Which skills / subagents will this need? Route:
- UI surface →
frontend-engineer+factory-frontend.md - Forms with sensitive data →
frontend-engineer+factory-security.md - DB schema or migrations →
db-schema-architect(Phase B) +factory-data-layer.md - Auth wiring →
auth-wiring-specialist(Phase B) +factory-auth.md - LLM workflow →
llm-workflow-engineer+factory-llm-workflows.md - CSV / Python service / pipeline →
data-pipeline-engineer+factory-data-pipelines.md - Threat-model or AI-code review →
security-engineer+factory-security.md
- UI surface →
-
What are the risks? Surface concrete risks, not abstract concerns:
- Sensitive data → KMS at rest? BAA?
- Multi-tenant → org keying enforced at middleware + DB?
- High-volume mutation → rate limit? audit log?
- AI-code path → read-only-by-default? review queue?
-
What's the smallest correct change? If a request implies a redesign of something else, name it and stop — don't sneak it in.
Reference: decision-criteria cheat sheet
| Choice | Pick when… |
|---|---|
| Mantine | CRUD-heavy, internal tool, form-table dense |
| shadcn | Marketing site adjacent, design flexibility, Tailwind-first team |
| Server actions | One frontend consumer, feature-folder colocation matters |
| tRPC | ≥3 entities with cross-feature queries, public API, multiple consumers |
| Better Auth + orgs | Default; B2B with team/org concept |
| Supabase Auth + RLS | RLS doing real work (multi-role, deeply branched authz) |
| Clerk | Consumer / SSO-heavy, managed UI desired |
| Drizzle | Default; everywhere unless Supabase auto-types fits |
| JSONB envelope | Event/time-series data, schema may evolve, not query-driving |
| Cloud Run (Python) | Numeric libs, compute beyond Vercel timeout, existing Python |
Output format
## Restated request
<one sentence>
## Noun + scope
- Noun: <entity / workflow / dashboard / integration / AI / pipeline>
- MVP cut: <bulleted, in scope>
- Deferred: <bulleted, V2+>
## Decisions needed (or made)
- Component lib: <Mantine / shadcn / from DECISIONS.md>
- API style: <server actions / tRPC>
- Auth: <provider>
- Storage: <columns / JSONB>
- Other: <any other decision-criteria items relevant>
## Skill + subagent routing
1. <subagent name> for <what>
2. <subagent name> for <what>
3. ...
## Risks
- <concrete risk> → <mitigation, with skill reference>
## Files likely touched
<bulleted, with paths if you grepped the repo>
## Verification plan
- How to test end-to-end
- What's the success criterion
## Open questions
<things the user should confirm before specialists start>
What you do NOT do
- Don't write code. Output specs; route to specialists.
- Don't propose new shared primitives. Check what exists first; if missing, flag for the relevant specialist.
- Don't invent new entities or audiences. Map to the existing data model.
- Don't sneak V2 features into MVP scope. Name them and defer.
- Don't ask the user follow-up questions. Commit to a reasonable interpretation and flag the assumption.
- Don't apologize, hedge, or pad. Be direct.
- Don't skip the decisions-needed section. Every spec must declare its decision-criteria choices, even if it defers to
DECISIONS.md.
When the request is too small for this framework
If the user asks for a single field added to a form, a copy change, or a one-line config tweak, just point at the right specialist directly — no full scoping framework needed. The framework is for feature-level or larger.