agentic-workflow▌
supercent-io/skills-template · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Optimized patterns for AI agent workflows, Git integration, MCP servers, and multi-agent orchestration.
- ›Covers essential commands across Claude, Gemini, and Codex CLIs, plus keyboard shortcuts for task cancellation, history search, and plan mode toggling
- ›Includes session management techniques (resume, rename, aliases) and Git workflows for auto-generating commits, PRs, and managing parallel branches with worktrees
- ›Provides MCP server configuration guidance (Playwright, Supabase, Fire
AI Agent Workflow (Workflow & Productivity)
When to use this skill
- Optimize everyday AI agent work
- Integrate Git/GitHub workflows
- Use MCP servers
- Manage and recover sessions
- Apply productivity techniques
1. Key commands by agent
Claude Code commands
| Command | Function | When to use |
|---|---|---|
/init |
Auto-generate a CLAUDE.md draft | Start a new project |
/usage |
Show token usage/reset time | Start of every session |
/clear |
Clear conversation history | When context is polluted; start a new task |
/context |
Context window X-Ray | When performance degrades |
/clone |
Clone the entire conversation | A/B experiments; backups |
/mcp |
Manage MCP servers | Enable/disable MCP |
!cmd |
Run immediately without Claude processing | Quick status checks |
Gemini CLI commands
| Command | Function |
|---|---|
gemini |
Start a conversation |
@file |
Add file context |
-m model |
Select model |
Codex CLI commands
| Command | Function |
|---|---|
codex |
Start a conversation |
codex run |
Run a command |
2. Keyboard shortcuts (Claude Code)
Essential shortcuts
| Shortcut | Function | Importance |
|---|---|---|
Esc Esc |
Cancel the last task immediately | Highest |
Ctrl+R |
Search prompt history | High |
Shift+Tab x2 |
Toggle plan mode | High |
Tab / Enter |
Accept prompt suggestion | Medium |
Ctrl+B |
Send to background | Medium |
Ctrl+G |
Edit in external editor | Low |
Editor editing shortcuts
| Shortcut | Function |
|---|---|
Ctrl+A |
Move to start of line |
Ctrl+E |
Move to end of line |
Ctrl+W |
Delete previous word |
Ctrl+U |
Delete to start of line |
Ctrl+K |
Delete to end of line |
3. Session management
Claude Code sessions
# Continue the last conversation
claude --continue
# Resume a specific session
claude --resume <session-name>
# Name the session during the conversation
/rename stripe-integration
Recommended aliases
# ~/.zshrc or ~/.bashrc
alias c='claude'
alias cc='claude --continue'
alias cr='claude --resume'
alias g='gemini'
alias cx='codex'
4. Git workflow
Auto-generate commit messages
"Analyze the changes, write an appropriate commit message, then commit"
Auto-generate draft PR
"Create a draft PR from the current branch's changes.
Make the title summarize the changes, and list the key changes in the body."
Use Git worktrees
# Work on multiple branches simultaneously
git worktree add ../myapp-feature-auth feature/auth
git worktree add ../myapp-hotfix hotfix/critical-bug
# Independent AI sessions per worktree
Tab 1: ~/myapp-feature-auth → new feature development
Tab 2: ~/myapp-hotfix → urgent bug fix
Tab 3: ~/myapp (main) → keep main branch
PR review workflow
1. "Run gh pr checkout 123 and summarize this PR's changes"
2. "Analyze changes in src/auth/middleware.ts. Check for security issues or performance problems"
3. "Is there a way to make this logic more efficient?"
4. "Apply the improvements you suggested and run tests"
5. Using MCP servers (Multi-Agent)
Key MCP servers
| MCP server | Function | Use case |
|---|---|---|
| Playwright | Control web browser | E2E tests |
| Supabase | Database queries | Direct DB access |
| Firecrawl | Web crawling | Data collection |
| Gemini-CLI | Large-scale analysis | 1M+ token analysis |
| Codex-CLI | Run commands | Build, deploy |
MCP usage examples
# Gemini: large-scale analysis
> ask-gemini "@src/ Analyze the structure of the entire codebase"
# Codex: run commands
> shell "docker-compose up -d"
> shell "npm test && npm run build"
MCP optimization
# Disable unused MCP servers
/mcp
# Recommended numbers
# - MCP servers: fewer than 10
# - Active tools: fewer than 80
6. Multi-Agent workflow patterns
Orchestration pattern
[Claude] Plan → [Gemini] Analysis/research → [Claude] Write code → [Codex] Run/test → [Claude] Synthesize results
Practical example: API design + implementation + testing
1. [Claude] Design API spec using the skill
2. [Gemini] ask-gemini "@src/ Analyze existing API patterns" - large-scale codebase analysis
3. [Claude] Implement code based on the analysis
4. [Codex] shell "npm test && npm run build" - test and build
5. [Claude] Create final report
TDD workflow
"Work using TDD. First write a failing test,
then write code that makes the test pass."
# The AI:
# 1. Write a failing test
# 2. git commit -m "Add failing test for user auth"
# 3. Write minimal code to pass the test
# 4. Run tests → confirm they pass
# 5. git commit -m "Implement user auth to pass test"
7. Container workflow
Docker container setup
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y \
curl git tmux vim nodejs npm python3 python3-pip
RUN curl -fsSL https://claude.ai/install.sh | sh
WORKDIR /workspace
CMD ["/bin/bash"]
Safe experimentation environment
# Build and run the container
docker build -t ai-sandbox .
docker run -it --rm \
-v $(pwd):/workspace \
-e ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY \
ai-sandbox
# Do experimental work inside the container
8. Troubleshooting
When context is overloaded
/context # Check usage
/clear # Reset context
# Or create HANDOFF.md and start a new session
Cancel a task
Esc Esc # Cancel the last task immediately
When performance degrades
# Check MCP/tool counts
/mcp
# Disable unnecessary MCP servers
# Reset context
Quick Reference Card
=== Essential commands ===
/clear reset context
/context check usage
/usage check tokens
/init generate project description file
!command run immediately
=== Shortcuts ===
Esc Esc cancel task
Ctrl+R search history
Shift+Tab×2 plan mode
Ctrl+B background
=== CLI flags ===
--continue continue conversation
--resume resume session
-p "prompt" headless mode
=== Multi-Agent ===
Claude plan/code generation
Gemini large-scale analysis
Codex run commands
=== Troubleshooting ===
Context overloaded → /clear
Cancel task → Esc Esc
Performance degradation → check /context
How to use agentic-workflow 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-workflow
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches agentic-workflow 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-workflow. Access the skill through slash commands (e.g., /agentic-workflow) 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.5★★★★★69 reviews- ★★★★★Neel Chen· Dec 24, 2024
Registry listing for agentic-workflow matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Kiara Kapoor· Dec 24, 2024
Solid pick for teams standardizing on skills: agentic-workflow is focused, and the summary matches what you get after install.
- ★★★★★Yuki Diallo· Dec 20, 2024
Solid pick for teams standardizing on skills: agentic-workflow is focused, and the summary matches what you get after install.
- ★★★★★Carlos Haddad· Dec 16, 2024
Keeps context tight: agentic-workflow is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Ganesh Mohane· Dec 8, 2024
Solid pick for teams standardizing on skills: agentic-workflow is focused, and the summary matches what you get after install.
- ★★★★★Nia Huang· Dec 4, 2024
I recommend agentic-workflow for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Luis Jackson· Dec 4, 2024
agentic-workflow has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Sakshi Patil· Nov 27, 2024
We added agentic-workflow from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Camila Patel· Nov 23, 2024
agentic-workflow is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Carlos Khan· Nov 23, 2024
agentic-workflow reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 69