π¦
Agentic Workflows Repo
No description available
0 installs
Trust: 30 β Low
Agents
Ask AI about Agentic Workflows Repo
Powered by Claude Β· Grounded in docs
I know everything about Agentic Workflows Repo. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Agentic Workflows
Universal workflows, skills, and MCP servers for AI IDE agents (Kiro, Qoder, Amazon Q, Claude, etc.)
π― What is this?
A collection of reusable agentic workflows that work across multiple AI IDE agents:
- Skills - Specialized capabilities (browser automation, app runner, etc.)
- Steering - Project context and coding standards
- MCP Servers - Tool integrations (Playwright, database, etc.)
- Templates - Reasoning chains, agent patterns
π¦ Installation
Quick Install (Recommended)
# Clone repo
git clone https://github.com/YOUR_USERNAME/agentic-workflows.git
cd agentic-workflows
# Install for your IDE
./install.sh --ide kiro
./install.sh --ide qoder
./install.sh --ide amazonq
./install.sh --ide all # Install for all IDEs
Manual Install
# For Kiro
cp -r skills ~/.kiro/
cp -r steering ~/.kiro/
cp -r mcp-servers ~/.kiro/
cp settings/mcp.json ~/.kiro/settings/
# For Qoder
cp -r skills ~/.qoder/
cp -r steering ~/.qoder/
cp -r mcp-servers ~/.qoder/
cp settings/mcp.json ~/.qoder/settings/
π Structure
agentic-workflows/
βββ skills/ # Reusable skills
β βββ empa-app-runner.md
β βββ ui-ux-constitution.md
β βββ browser-automation.md
β
βββ steering/ # Project guidelines
β βββ coding-standards.md
β βββ python-best-practices.md
β βββ react-patterns.md
β
βββ mcp-servers/ # MCP tool servers
β βββ browser-automation/
β β βββ server.py
β β βββ pyproject.toml
β β βββ README.md
β βββ database-query/
β βββ file-operations/
β
βββ templates/ # Code templates
β βββ reasoning-chain.py
β βββ agent-pattern.py
β βββ mcp-server-template.py
β
βββ examples/ # Example skills (reference only, not installed)
β βββ empa-app-runner/
β βββ ui-ux-constitution/
β
βββ settings/ # Config templates
β βββ mcp.json
β βββ config.json
β
βββ install.sh # Installation script
βββ uninstall.sh # Uninstallation script
βββ README.md
π Usage
After Installation
Your IDE will automatically load:
- Skills from
~/.{ide}/skills/ - Steering from
~/.{ide}/steering/ - MCP servers from
~/.{ide}/mcp-servers/
Example: Browser Automation
User: "Open http://localhost:8000 and take a screenshot"
Agent will use browser-automation MCP server:
1. navigate(url="http://localhost:8000")
2. screenshot(path="screenshot.png")
Example: App Runner
User: "Run the Empa app"
Agent will use empa-app-runner skill:
1. cd app && uv run app.py
2. Wait for server start
3. Open browser to localhost:8000
π§ Customization
Add Your Own Skills
# Create new skill
cat > skills/my-custom-skill.md << 'EOF'
# My Custom Skill
## Purpose
What this skill does
## Usage
How to use it
EOF
# Reinstall
./install.sh --ide kiro
Add Your Own MCP Server
# Create new MCP server
mkdir mcp-servers/my-server
cd mcp-servers/my-server
# Create server.py
cat > server.py << 'EOF'
from mcp.server.fastmcp import FastMCP
mcp = FastMCP("my-server")
@mcp.tool()
def my_tool(arg: str) -> str:
"""My custom tool"""
return f"Result: {arg}"
EOF
# Create pyproject.toml
cat > pyproject.toml << 'EOF'
[project]
name = "my-server-mcp"
version = "0.1.0"
dependencies = ["mcp[cli]>=1.0.0"]
EOF
# Install dependencies
uv sync
# Reinstall
cd ../..
./install.sh --ide kiro
π¨ Supported IDEs
| IDE | Status | Notes |
|---|---|---|
| Kiro | β Full support | Skills, Steering, MCP |
| Qoder | β Full support | VS Code extension |
| Amazon Q | π§ Partial | MCP only |
| Claude Desktop | π§ Partial | MCP only (global config) |
| Cursor | π§ Partial | MCP only |
π Available Skills
- empa-app-runner - Auto-run Empa app with browser
- ui-ux-constitution - UI/UX design system for HSP-friendly apps
- browser-automation - Control browser via Playwright
π Available MCP Servers
-
browser-automation - Playwright browser control
- Navigate, click, fill forms, screenshot
- 143 device emulation profiles
-
database-query - SQL database operations (coming soon)
-
file-operations - Advanced file management (coming soon)
π οΈ Development
Testing MCP Servers
cd mcp-servers/browser-automation
uv run mcp dev server.py
Open http://localhost:5173 to test interactively.
Contributing
- Fork the repo
- Create feature branch
- Add your skill/server/template
- Test with
./install.sh --ide kiro - Submit PR
π Documentation
π Updates
# Update to latest
cd agentic-workflows
git pull
./install.sh --ide kiro # Reinstall
ποΈ Uninstall
./uninstall.sh --ide kiro
./uninstall.sh --ide all
π License
MIT
π€ Credits
Created for universal AI IDE agent workflows.
