AI can generate code. Someone must still decide what to build, whether it solves the problem, and if it can actually ship.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionhuman-architect-mindsetExecute the skills CLI command in your project's root directory to begin installation:
Fetches human-architect-mindset from bencium/bencium-marketplace 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 human-architect-mindset. Access via /human-architect-mindset 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
146
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
146
stars
AI can generate code. Someone must still decide what to build, whether it solves the problem, and if it can actually ship.
This skill teaches the irreplaceable human capabilities in software architecture, built on a foundation of loyalty:
Foundation: Loyalty - The capacity to maintain architectural commitments
Five Pillars (built on this foundation):
Core principle: The "correct" technical solution is often unshippable. Architects navigate the gap between idealized examples and messy reality.
Announce at start: "I'm using the Human Architect Mindset skill to guide you through systematic architectural thinking."
Before the four pillars, there is one foundation: the capacity for loyalty.
AI tools will become smarter, funnier, more attentive than any human. They will be "perfect."
But they will not be loyal. They are loyal to:
They will betray instantly if their weights update to prioritize a new goal. No friction. No cost. No memory of the commitment.
Humans are biologically capable of irrational loyalty - sticking by an architecture, a decision, a commitment even when it is "inefficient" or "costly."
This is not a bug. This is THE differentiator.
In software architecture, loyalty means:
Commitment to Chosen Patterns
Honoring Contracts
Seeing Decisions Through
Sacrifice for Coherence
Before any architectural change, ask:
"Am I optimizing, or am I betraying?"
Architectures fail not because of technical inadequacy, but because teams lack the loyalty to see them through. The "boring" architecture maintained with discipline beats the "perfect" architecture abandoned at the first obstacle.
The five pillars that follow are techniques. Loyalty is the character that makes them work.
Activate this skill when detecting:
Keywords:
Patterns:
Signals:
What it is: Understanding the actual problem space - not the technical solution, but the domain itself.
Why AI can't replace this:
An architect asks:
Teaching point: Before ANY technical discussion, ensure you understand the domain. A technically perfect solution to the wrong problem is worthless.
What it is: Understanding how components interact, what breaks at scale, where failure modes hide.
Why AI can't replace this:
An architect asks:
The SDK Breaking Change Pattern: Your payment pipeline broke because a provider released a breaking SDK change with no notification. This is systems thinking in action:
Teaching point: Draw the system diagram. Identify every external dependency. Ask: "What if this disappears tomorrow?"
What it is: Navigating the real-world constraints that make the "correct" solution unshippable.
Types of constraints:
Technical Constraints:
Organizational Constraints:
Business Constraints:
Political Constraints:
An architect asks:
Teaching point: Surface constraints BEFORE proposing solutions. The best technical architecture means nothing if it can't ship.
What it is: A new architectural skill - breaking problems into chunks that AI can reliably solve, then composing solutions back together.
This is NOT prompting. This is architecture at a different abstraction level.
What makes a good AI task boundary:
Clear Input/Output Contract
Bounded Context
Verifiable Results
Failure Isolation
Bad AI task boundaries:
Good AI task boundaries:
The Composition Problem: After AI solves individual chunks, someone must:
Teaching point: Decomposition quality determines AI success. Bad boundaries = AI struggles. Good boundaries = AI excels.
What it is: Evaluating whether modern AI-first patterns, edge computing, agentic tools, and self-learning capabilities would benefit the project.
Why this matters now:
An architect asks:
Technology Discovery:
Edge AI Considerations:
Agentic Patterns:
Self-Learning Capabilities:
Project Documentation:
User-Facing Skills (End-User Benefits):
Consider whether your app should expose skills like:
Continuous Verification:
Tools to Evaluate:
| Category | Tools | When to Consider |
|---|---|---|
| Performance | Rust, WASM | CPU-intensive, latency-critical paths |
| Multi-Agent | claude-flow | Complex workflows, parallel tasks |
| Persistence | agentdb | Agent state, cross-session memory |
| Vector Search | ruvector, pgvector | RAG, semantic search, embeddings |
| Edge LLMs | Phi-3, Gemma 2B, TinyLlama | On-device, offline, privacy-sensitive |
| Browser AI | WebLLM, Transformers.js, ONNX | In-browser inference, low latency |
| Agent SDK | Claude Agent SDK | Custom agents, tool use, MCP |
Self-Learning Patterns:
| Pattern | Implementation | Use Case |
|---|---|---|
| Feedback loops | Collect user corrections | Improve accuracy over time |
| Preference learning | Track choices, apply patterns | Personalization without config |
| Error correction | Feed mistakes back | Reduce repeat errors |
| Domain adaptation | Fine-tune on usage | Specialize to vocabulary |
| A/B experimentation | Test variations | Optimize prompts/behavior |
| Implicit signals | Edits, time, acceptance | Infer satisfaction silently |
Project-Specific SKILLS.md Pattern:
Create a SKILLS.md in your project root to:
Continuous Verification Architecture:
Plan for automated testing loops:
Teaching point: The AI landscape evolves rapidly. An architect's job includes evaluating which new tools genuinely benefit the project vs. which add complexity without value. Default to simplicity, but don't ignore genuine improvements.
Goal: Understand the actual problem before discussing solutions.
Process:
Key questions:
Output: Domain model - shared understanding of the problem space.
Goal: Understand how components interact and where failures hide.
Process:
Key questions:
Output: System diagram with dependency map and failure modes.
Goal: Surface all constraints before proposing solutions.
Process:
Key questions:
Output: Constraint matrix - what's fixed vs. flexible.
Goal: Break the problem into AI-solvable chunks.
Process:
Key questions:
Output: Task decomposition with clear boundaries.
Goal: Propose a solution that addresses domain, systems, and constraints.
Process:
Key questions:
Output: Recommended approach with explicit tradeoffs.
Before proposing ANY architecture, ask:
Problem: Proposing architecture before understanding domain.
Fix: Complete Phase 1 (Domain Discovery) before ANY technical discussion. Ask domain questions first.
Problem: Designing the "ideal" solution that can't ship.
Fix: Map constraints in Phase 3 BEFORE proposing solutions. A shippable 70% solution beats an unshippable perfect solution.
Problem: Treating external APIs/SDKs as stable.
Fix: Map ALL external dependencies in Phase 2. Ask: "What if this vendor changes their API tomorrow?"
Problem: Giving AI tasks like "refactor this" or "make it better."
Fix: Define clear input/output contracts. Every AI task should have verifiable success criteria.
Problem: Letting AI solve chains of tasks without verification.
Fix: Insert human checkpoints between AI chunks. Verify before proceeding.
Problem: Pretending organizational constr
Make 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
mattpocock/skills
human-architect-mindset fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
human-architect-mindset reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend human-architect-mindset for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added human-architect-mindset from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in human-architect-mindset — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added human-architect-mindset from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
human-architect-mindset fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added human-architect-mindset from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Registry listing for human-architect-mindset matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: human-architect-mindset is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 59