agentic-development-principles▌
supercent-io/skills-template · updated May 26, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Framework for effective AI collaboration defining task decomposition, context management, abstraction selection, and automation philosophy.
- ›Divide complex tasks into small, independently verifiable steps; AI performs significantly better with clear, bounded instructions than large ambiguous requests
- ›Keep context fresh and single-purpose; use separate conversations for different topics and apply HANDOFF.md summaries when conversations grow long to prevent context drift
- ›Adjust abstract
Agentic development principles (Agentic Development Principles)
"AI is the copilot; you are the pilot" AI agents amplify the developer's thinking and take over repetitive work, but final decision-making authority and responsibility always remain with the developer.
When to use this skill
- When starting a collaboration session with an AI agent
- When deciding an approach before starting a complex task
- When establishing a context management strategy
- When reviewing workflows to improve productivity
- When onboarding teammates on how to collaborate with AI
- When applying baseline principles while adopting a new AI tool
Principle 1: Divide and conquer (Divide and Conquer)
Core concept
AI performs much better with small, clear instructions than with large, ambiguous tasks.
How to apply
| Wrong example | Right example |
|---|---|
| "Build me a login page" | 1. "Create the login form UI component" |
| 2. "Implement the login API endpoint" | |
| 3. "Wire up the authentication logic" | |
| 4. "Write test code" | |
| "Optimize the app" | 1. "Analyze performance bottlenecks" |
| 2. "Optimize database queries" | |
| 3. "Reduce frontend bundle size" |
Practical pattern: staged implementation
Step 1: Design and validate the model/schema
Step 2: Implement core logic (minimum viable functionality)
Step 3: Connect APIs/interfaces
Step 4: Write and run tests
Step 5: Integrate and refactor
Validation points
- Can each step be validated independently?
- If it fails, can you fix only that step?
- Is the scope clear enough for the AI to understand?
Principle 2: Context is like milk (Context is like Milk)
Core concept
Context (the AI's working memory) should always be kept fresh and compact.
- Old and irrelevant information reduces AI performance
- Context drift: mixing multiple topics can reduce performance by up to 39% (research)
Context management strategies
Strategy 1: Single-purpose conversation
Session 1: Work on the authentication system
Session 2: Work on UI components
Session 3: Write test code
Session 4: DevOps/deployment work
- Do not mix multiple topics in a single conversation
- Start a new session for a new topic
Strategy 2: HANDOFF.md technique
When the conversation gets long, summarize only the essentials and hand them to a new session:
# HANDOFF.md
## Completed work
- ✅ Implemented user authentication API
- ✅ Implemented JWT token issuance logic
## Current status
- Working on token refresh logic
## Next tasks
- Implement refresh tokens
- Add logout endpoint
## Tried but failed
- Failed to integrate Redis session store (network issue)
## Cautions
- Watch for conflicts with existing session management code
Strategy 3: Monitor context state
- When the conversation gets long, ask the AI to summarize the current state
- If needed, reset the conversation and restart using HANDOFF.md
Strategy 4: Optimization metrics
| Metric | Recommended value | Action |
|---|---|---|
| Conversation length | Keep to a reasonable level | Create HANDOFF.md if it gets long |
| Topic count | 1 (single purpose) | Use a new session for new topics |
| Active files | Only what's needed | Remove unnecessary context |
Principle 3: Choose the right abstraction level
Core concept
Choose an appropriate abstraction level depending on the situation.
| Mode | Description | When to use |
|---|---|---|
| Vibe Coding | High level (see only overall structure) | Rapid prototyping, idea validation, one-off projects |
| Deep Dive | Low level (go line-by-line) | Bug fixes, security review, performance optimization, production code |
In practice
When adding a new feature:
1. High abstraction: "Create a user profile page" → understand overall structure
2. Medium abstraction: "Show the validation logic for the profile edit form" → review a specific feature
3. Low abstraction: "Explain why this regex fails email validation" → detailed debugging
Abstraction level selection guide
- Prototype/PoC: Vibe Coding 80%, Deep Dive 20%
- Production code: Vibe Coding 30%, Deep Dive 70%
- Bug fixes: Deep Dive 100%
Principle 4: Automation of automation (Automation of Automation)
Core concept
If you've repeated the same task 3+ times → find a way to automate it
And the automation process itself → automate that too
Automation level evolution
| Level | Approach | Example |
|---|---|---|
| 1 | Manual copy/paste | AI output → copy into terminal |
| 2 | Terminal integration | Use AI tools directly |
| 3 | Voice input | Voice transcription system |
| 4 | Automate repeated instructions | Use project config files |
| 5 | Workflow automation | Custom commands/scripts |
| 6 | Automate decisions | Use Skills |
| 7 | Enforce rules automatically | Use hooks/guardrails |
Checklist: identify automation targets
- Do you run the same command 3+ times?
- Do you repeat the same explanations?
- Do you often write the same code patterns?
- Do you repeat the same validation procedures?
Automation priority
- High: tasks repeated daily
- Medium: tasks repeated weekly (or more)
- Low: tasks repeated about once a month
Principle 5: Balance caution and speed (Plan vs Execute)
Plan mode (Plan Mode)
Analyze without executing; execute only after review/approval
When to use:
- A complex task you're doing for the first time
- A large refactor spanning multiple files
- Architecture changes
- Database migrations
- Hard-to-roll-back work
Execute mode (Execute Mode)
AI directly edits code and runs commands
When to use:
- Simple, clear tasks
- Work with well-validated patterns
- Sandbox/container environments
- Easy-to-revert work
Recommended ratio
- Plan mode: 70-90% (use as the default)
- Execute mode: 10-30% (only in safe environments)
Safety principles
- ⚠️ Auto-running dangerous commands only in isolated environments
- Always back up before changing important data
- Always use plan mode for irreversible work
Principle 6: Verify and reflect (Verify and Reflect)
How to verify output
-
Write test code
"Write tests for this function. Include edge cases too." -
Visual review
- Review changed files via diff
- Revert unintended changes
-
Draft PR / code review
"Create a draft PR for these changes" -
Ask for self-verification
"Review the code you just generated again. Validate every claim, and summarize the verification results in a table at the end."
Verification checklist
- Does the code work as intended?
- Are edge cases handled?
- Are there any security vulnerabilities?
- Are tests sufficient?
- Are there any performance issues?
Reflection questions
- What did you learn in this session?
- What could you do better next time?
- Were there repetitive tasks you could automate?
Quick Reference
Six principles summary
| Principle | Core | Practice |
|---|---|---|
| 1. Divide and conquer | Small, clear units | Split into independently verifiable steps |
| 2. Context management | Keep it fresh | Single-purpose conversations, HANDOFF.md |
| 3. Abstraction choice | Depth per situation | Adjust Vibe ↔ Deep Dive |
| 4. Automation² | Remove repetition | Automate after 3 repetitions |
| 5. Plan/execute balance | Caution first | Plan 70-90%, execute 10-30% |
| 6. Verification/reflection | Check outputs | Tests, reviews, self-verification |
Mastery rule
"To truly master AI tools, you need to use them enough"
Learning by using is key - theory alone is not enough; you need to experience different situations in real projects.
Golden rule
When instructing an AI:
1. Clearly (Specific)
2. Step-by-step (Step-by-step)
3. Verifiable (Verifiable)
Best Practices
DO (recommended)
- Focus on one clear goal per conversation
- Regularly clean up context
- Plan before complex work
- Always verify outputs
- Automate repetitive work
DON'T (prohibited)
- Handle multiple unrelated tasks in one conversation
- Keep working with a bloated context
- Auto-run dangerous commands carelessly
- Use AI output as-is without verification
- Repeat the same work without automating it
References
How to use agentic-development-principles on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add agentic-development-principles
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches agentic-development-principles from GitHub repository supercent-io/skills-template and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate agentic-development-principles. Access the skill through slash commands (e.g., /agentic-development-principles) or your agent's skill management interface.
Security & Verification Notice
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 development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
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
Competitive Analysis
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
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
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
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ 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.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.4★★★★★47 reviews- ★★★★★Zaid Khanna· Dec 28, 2024
We added agentic-development-principles from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Shikha Mishra· Dec 20, 2024
Registry listing for agentic-development-principles matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Ganesh Mohane· Dec 16, 2024
agentic-development-principles has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Li Ndlovu· Dec 12, 2024
agentic-development-principles reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Benjamin Mehta· Dec 4, 2024
Solid pick for teams standardizing on skills: agentic-development-principles is focused, and the summary matches what you get after install.
- ★★★★★Benjamin Bhatia· Nov 23, 2024
agentic-development-principles has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Mateo Rahman· Nov 19, 2024
Keeps context tight: agentic-development-principles is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Sakshi Patil· Nov 7, 2024
Solid pick for teams standardizing on skills: agentic-development-principles is focused, and the summary matches what you get after install.
- ★★★★★Kiara Ndlovu· Nov 3, 2024
agentic-development-principles is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Chaitanya Patil· Oct 26, 2024
We added agentic-development-principles from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 47