Analyzes requirements and creates detailed PRD documents for software implementation.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionarchitecting-solutionsExecute the skills CLI command in your project's root directory to begin installation:
Fetches architecting-solutions from charon-fan/agent-playbook and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate architecting-solutions. Access via /architecting-solutions in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
27
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
27
stars
Analyzes requirements and creates detailed PRD documents for software implementation.
Use this skill when you need to:
This skill is typically installed globally at ~/.claude/skills/architecting-solutions/.
The skill guides Claude through a structured workflow:
{PROJECT_ROOT}/docs/ directoryIMPORTANT: Always write PRD to the project's docs/ folder, never to plan files or hidden locations.
Copy this checklist and track progress:
Requirements Analysis:
- [ ] Step 1: Clarify user intent and success criteria
- [ ] Step 2: Identify constraints (tech stack, timeline, resources)
- [ ] Step 3: Analyze existing codebase patterns
- [ ] Step 4: Research best practices (if needed)
- [ ] Step 5: Design solution architecture
- [ ] Step 6: Generate PRD document (must be in {PROJECT_ROOT}/docs/)
- [ ] Step 7: Validate with user
Ask these questions to understand the problem:
# Find similar patterns in the codebase
grep -r "related_keyword" packages/ --include="*.ts" --include="*.tsx"
# Find relevant directory structures
find packages/ -type d -name "*keyword*"
# Check existing patterns
ls -la packages/kit/src/views/similar-feature/
Critical for Refactoring:
# Find all imports/usages of a module
grep -r "useFeatureContext" packages/ --include="*.ts" --include="*.tsx"
grep -r "refreshSignalRef" packages/ --include="*.ts" --include="*.tsx"
CRITICAL: Before proposing a refactoring, ask:
Look for:
For unfamiliar domains, search for best practices.
Before settling on a solution, ALWAYS present multiple options:
Example:
Problem: Data doesn't refresh after operation
Option 1 (Minimal): Hook into existing pending request count decrease
- Changes: 1-2 files
- Risk: Low
- Selected: ✓
Option 2 (Medium): Add refresh callback through existing shared context
- Changes: 3-5 files
- Risk: Medium
Option 3 (Comprehensive): Migrate to a centralized state-store pattern
- Changes: 10+ files, new atoms/actions
- Risk: High
- Time: 2-3 days
Ask user BEFORE writing PRD:
For each major decision, document:
| Option | Pros | Cons | Selected |
|---|---|---|---|
| Approach A | Pro1, Pro2 | Con1 | ✓ |
| Approach B | Pro1 | Con1, Con2 |
IMPORTANT: Always write PRD to the project's docs/ directory, never to plan files or hidden locations.
Output location: {PROJECT_ROOT}/docs/{feature-name}-prd.md
Example:
/Users/user/my-project/, write to /Users/user/my-project/docs/feature-name-prd.mddata-refresh-logic-refactoring-prd.mdBefore finalizing:
For bugs and refresh issues, ALWAYS verify:
onRefresh is provided, is it actually implemented?Common Root Cause Mistakes:
revalidateOnFocus requires actual focus change)ALL existing state is accounted for: List every piece of state being migrated
ALL consumers are identified: Find every file that uses the code being changed
# Must run: grep -r "import.*ModuleName" packages/
# Must run: grep -r "useHookName" packages/
Provider usage points are covered: Every file using the Provider is updated
No conditional hooks: Never call hooks conditionally (e.g., isAdvancedMode ? useHook() : null)
Ref usage is correct: If using ref pattern, access via .current
useFeatureActions().current not useFeatureActions()# Must verify: Each page that uses the context has the Provider wrapper
EContextStoreNames)| Anti-Pattern | Better Approach |
|---|---|
| "Optimize the code" | "Reduce render time from 100ms to 16ms by memoizing expensive calculations" |
| "Make it faster" | "Implement caching to reduce API calls from 5 to 1 per session" |
| "Clean up the code" | "Extract duplicate logic into shared utility functions" |
| "Fix the bug" | "Handle null case in getUserById when user doesn't exist" |
| "Refactor the state layer" | "Migrate from Context+Ref to a centralized store: " |
| Over-engineering | Start with simplest solution, extend only if needed |
Real Case Study:
Key: Comprehensive solutions should be a CHOICE, not the DEFAULT.
1. Read similar feature implementations
2. Identify reusable patterns
3. Design component hierarchy
4. Define state management approach
5. Specify API integration points
6. List all new files to create
7. List all existing files to modify
1. Analyze current implementation
2. Find ALL consumers (grep -r imports)
3. Identify pain points and technical debt
4. PROPOSE MULTIPLE SOLUTIONS (minimal → comprehensive)
5. GET USER APPROVAL on approach
6. Plan migration strategy (phased vs big-bang)
7. Define rollback approach
8. List migration checklist
# CRITICAL: Start with the simplest solution!
# Only propose comprehensive refactoring if user explicitly wants it.
1. Understand expected vs actual behavior
2. Locate root cause in code
3. Identify affected areas
4. Design fix approach
5. Specify testing for regression prevention
docs/ folderMake data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
ailabs-393/ai-labs-claude-skills
Solid pick for teams standardizing on skills: architecting-solutions is focused, and the summary matches what you get after install.
Registry listing for architecting-solutions matched our evaluation — installs cleanly and behaves as described in the markdown.
Solid pick for teams standardizing on skills: architecting-solutions is focused, and the summary matches what you get after install.
I recommend architecting-solutions for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added architecting-solutions from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
architecting-solutions is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
We added architecting-solutions from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Keeps context tight: architecting-solutions is the kind of skill you can hand to a new teammate without a long onboarding doc.
architecting-solutions reduced setup friction for our internal harness; good balance of opinion and flexibility.
architecting-solutions fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 54