agent-toolkit-cli 1.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agent_toolkit/__init__.py +4 -0
- agent_toolkit/__main__.py +3 -0
- agent_toolkit/_paths.py +64 -0
- agent_toolkit/cli/__init__.py +0 -0
- agent_toolkit/cli/doctor.py +453 -0
- agent_toolkit/cli/install.py +445 -0
- agent_toolkit/cli/main.py +66 -0
- agent_toolkit/cli/mcp.py +418 -0
- agent_toolkit/cli/plugin.py +213 -0
- agent_toolkit/cli/skills.py +421 -0
- agent_toolkit/loop/__init__.py +0 -0
- agent_toolkit/loop/gh_gate.py +626 -0
- agent_toolkit/loop/runner.py +1548 -0
- agent_toolkit/runner/__init__.py +0 -0
- agent_toolkit/runner/dispatcher.py +164 -0
- agent_toolkit/runner/policy.py +345 -0
- agent_toolkit/runner/providers/__init__.py +21 -0
- agent_toolkit/runner/providers/anthropic_provider.py +109 -0
- agent_toolkit/runner/providers/base.py +53 -0
- agent_toolkit/runner/providers/ollama_provider.py +108 -0
- agent_toolkit/runner/providers/openai_provider.py +105 -0
- agent_toolkit/runner/providers/opencode_provider.py +127 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/architect/AGENT.md +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/assistant/AGENT.md +59 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/build-error-resolver/AGENT.md +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/client-workflow-bootstrap/AGENT.md +60 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/code-reviewer/AGENT.md +49 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/database-reviewer/AGENT.md +44 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/docs-lookup/AGENT.md +28 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/e2e-runner/AGENT.md +38 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/performance-optimizer/AGENT.md +52 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/planner/AGENT.md +41 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/refactor-cleaner/AGENT.md +43 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/reference-lookup/AGENT.md +33 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/security-reviewer/AGENT.md +47 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/tdd-guide/AGENT.md +58 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/tech-assistant/AGENT.md +11 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/agents/typescript-reviewer/AGENT.md +61 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/catalogs/agent-catalog.yaml +202 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/catalogs/loop-catalog.yaml +165 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/catalogs/skill-catalog.yaml +699 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/catalogs/skills-layout.json +337 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/changelog-drafter/loop.yaml +40 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/ci-sweeper/loop.yaml +53 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/daily-triage/loop.yaml +47 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/dep-sweeper/loop.yaml +46 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/issue-triage/loop.yaml +40 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/oss-daily-briefing/loop.yaml +65 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/oss-pr-monitor/loop.yaml +85 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/oss-triage/loop.yaml +67 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/post-merge-cleanup/loop.yaml +44 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/loops/pr-babysitter/loop.yaml +46 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/clickup/README.md +45 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/clickup/config.template.json +7 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/clickup/wrapper.sh +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/figma/README.md +56 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/figma/config.template.json +9 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/github/README.md +11 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/github/config.template.json +7 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/github/wrapper.sh +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/linear/README.md +49 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/linear/config.template.json +10 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/notion/README.md +7 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/notion/config.template.json +7 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/notion/wrapper.sh +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/slack/README.md +8 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/slack/config.template.json +8 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/mcp/templates/slack/wrapper.sh +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/CLAUDE.md +66 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/assistant.md +59 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/build-error-resolver.md +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/client-workflow-bootstrap.md +60 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/contribution-planner.md +39 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/database-reviewer.md +44 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/docs-lookup.md +28 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/e2e-runner.md +38 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/performance-optimizer.md +52 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/planner.md +41 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/refactor-cleaner.md +43 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/reference-lookup.md +33 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/security-reviewer.md +47 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/tdd-guide.md +58 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/agents/typescript-reviewer.md +61 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/claude-code/settings.json +87 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/copilot/copilot-instructions.md +15 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/README.md +33 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/architect.mdc +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/assistant.mdc +25 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/build-error-resolver.mdc +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/code-reviewer.mdc +21 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/database-reviewer.mdc +29 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/docs-lookup.mdc +15 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/e2e-runner.mdc +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/performance-optimizer.mdc +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/planner.mdc +28 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/refactor-cleaner.mdc +26 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/reference-lookup.mdc +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/security-reviewer.mdc +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/tdd-guide.mdc +26 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/cursor/rules/typescript-reviewer.mdc +28 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/architect.md +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/assistant.md +52 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/build-error-resolver.md +31 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/client-workflow-bootstrap.md +66 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/code-reviewer.md +47 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/contribution-planner.md +44 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/database-reviewer.md +43 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/docs-lookup.md +28 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/e2e-runner.md +33 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/performance-optimizer.md +34 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/planner.md +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/refactor-cleaner.md +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/reference-lookup.md +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/security-reviewer.md +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/tdd-guide.md +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/agents/typescript-reviewer.md +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/opencode/opencode.json +37 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/pi/skills/architect/skill.md +5 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/pi/skills/assistant/skill.md +3 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/pi/skills/code-reviewer/skill.md +5 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/pi/skills/planner/skill.md +3 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/pi/skills/security-reviewer/skill.md +3 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/memories/global_rules.md +74 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/architect.mdc +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/build-error-resolver.mdc +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/code-reviewer.mdc +21 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/database-reviewer.mdc +29 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/docs-lookup.mdc +15 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/e2e-runner.mdc +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/performance-optimizer.mdc +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/planner.mdc +28 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/refactor-cleaner.mdc +26 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/security-reviewer.mdc +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/tdd-guide.mdc +26 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/profiles/windsurf/rules/typescript-reviewer.mdc +28 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/assistant/SKILL.md +213 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/assistant/references/AGENTS_TEMPLATE.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/assistant/references/ORCHESTRATION.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/assistant/references/REPO_INSPECTION.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/dev-companion/SKILL.md +65 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/dev-companion/references/LOOP_GUARDRAILS.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/onboarding/SKILL.md +119 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/output-handshake/SKILL.md +24 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/pr-fallback/SKILL.md +33 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/pr-fallback/references/pr-body-default.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/core/workspace-knowledge-sync/SKILL.md +141 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/data/dbt-validation/SKILL.md +41 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/data/snowflake-validation/SKILL.md +38 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/adr/SKILL.md +46 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/adr/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/adr/references/example-001-graphql-adoption.md +66 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/agreement/SKILL.md +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/agreement/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/agreement/references/example-api-versioning.md +29 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/bug/SKILL.md +25 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/bug/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/bug/references/example-search-filter-bug.md +58 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/decision-log/SKILL.md +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/decision-log/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/decision-log/references/example-repository-pattern.md +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/development-workflow/SKILL.md +33 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/development-workflow/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/development-workflow/references/default-workflow-checklist.md +44 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/epic/SKILL.md +21 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/epic/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/epic/references/example-unified-dashboard.md +40 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/incident/SKILL.md +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/incident/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/incident/references/example-payment-outage.md +62 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/management-unit-assessment/SKILL.md +105 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/management-unit-assessment/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/management-unit-assessment/references/example-team-assessment.md +126 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/meeting-minutes/SKILL.md +24 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/meeting-minutes/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/meeting-minutes/references/example-weekly-sync.md +72 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/planning/SKILL.md +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/planning/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/planning/references/example-sprint-planning.md +62 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/prd/SKILL.md +44 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/prd/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/prd/references/example-unified-api.md +71 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/project-assessment/SKILL.md +90 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/project-assessment/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/project-assessment/references/example-platform-assessment.md +122 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/project-assessment-evidence/SKILL.md +88 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/project-assessment-evidence/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/project-assessment-evidence/references/example-evidence-map.md +46 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/spike/SKILL.md +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/spike/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/spike/references/example-graphql-federation.md +79 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/task/SKILL.md +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/task/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/task/references/example-nav-system.md +33 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/technical-unit-assessment/SKILL.md +58 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/technical-unit-assessment/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/technical-unit-assessment/references/example-frontend-assessment.md +112 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/technical-unit-assessment/references/indicator-groups.md +65 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/trd/SKILL.md +47 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/trd/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/trd/references/example-api-migration.md +122 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/user-story/SKILL.md +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/user-story/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/user-story/references/example-advanced-filtering.md +37 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/work-item/SKILL.md +30 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/work-item/references/default-template.md +0 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/work-item/references/example-routing-dashboard.md +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/workflow-client-bootstrap/SKILL.md +148 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/workflow-client-bootstrap/questions.yaml +165 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/delivery/workflow-generic-project/SKILL.md +78 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma/LICENSE.txt +2 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma/NOTICE.txt +25 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma/SKILL.md +95 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma/references/figma-mcp-config.md +82 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma/references/figma-tools-and-prompts.md +34 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-code-connect-components/LICENSE.txt +2 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-code-connect-components/NOTICE.txt +18 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-code-connect-components/SKILL.md +350 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-code-connect-components/references/mapping-checklist.md +7 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-code-connect-components/scripts/normalize_node_id.py +25 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-create-design-system-rules/LICENSE.txt +2 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-create-design-system-rules/NOTICE.txt +19 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-create-design-system-rules/SKILL.md +550 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-create-design-system-rules/references/rule-template.md +15 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-create-design-system-rules/scripts/check_agents_md.sh +9 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-create-new-file/LICENSE.txt +2 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-create-new-file/NOTICE.txt +17 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-create-new-file/SKILL.md +69 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-implement-design/LICENSE.txt +2 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-implement-design/NOTICE.txt +19 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/figma-implement-design/SKILL.md +264 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/SKILL.md +60 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/charts.csv +26 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/colors.csv +97 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/icons.csv +101 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/landing.csv +31 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/products.csv +97 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/react-performance.csv +45 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/astro.csv +54 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/react.csv +54 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/styles.csv +68 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/typography.csv +58 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/data/web-interface.csv +31 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/references/pre-delivery-checklist.md +39 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/references/search-reference.md +44 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/references/ui-rules.md +35 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/scripts/core.py +253 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/scripts/design_system.py +1067 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/design/ui-ux-pro-max/scripts/search.py +114 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-address-comments/LICENSE.txt +202 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-address-comments/NOTICE.txt +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-address-comments/SKILL.md +69 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-address-comments/scripts/fetch_comments.py +237 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-contribution-planner/SKILL.md +157 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-contribution-planner/scripts/inspect_contributions.py +800 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-fix-ci/LICENSE.txt +201 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-fix-ci/NOTICE.txt +20 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-fix-ci/SKILL.md +71 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gh-fix-ci/scripts/inspect_pr_checks.py +509 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/github-cli-workflow/SKILL.md +49 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/gitlab-cli-workflow/SKILL.md +44 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/workflow-client-bootstrap/SKILL.md +14 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/forge/workflow-generic-project/SKILL.md +14 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/clickup-cli/SKILL.md +75 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/clickup-cli/references/docs-management.md +57 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/clickup-cli/references/task-management.md +131 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/clickup-cli/references/time-tracking.md +38 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/linear/LICENSE.txt +202 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/linear/NOTICE.txt +23 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/linear/SKILL.md +131 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/slack-assistant/SKILL.md +134 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/slack-cli/SKILL.md +105 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/integrations/slack-cli/references/INSTALLATION.md +42 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/loops/loop-runner/SKILL.md +90 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/ops/docs-generator/SKILL.md +81 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/ops/llm-cost-advisor/SKILL.md +83 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/ops/triage/SKILL.md +117 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/LICENSE.txt +201 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/NOTICE.txt +27 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/SKILL.md +142 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/assets/experiment-template.ipynb +110 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/assets/tutorial-template.ipynb +107 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/references/experiment-patterns.md +10 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/references/notebook-structure.md +17 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/references/quality-checklist.md +11 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/references/tutorial-patterns.md +9 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/jupyter-notebook/scripts/new_notebook.py +130 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/playwright-cli/LICENSE.txt +201 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/playwright-cli/NOTICE.txt +29 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/playwright-cli/SKILL.md +151 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/playwright-cli/references/cli.md +116 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/playwright-cli/references/workflows.md +98 -0
- agent_toolkit_cli-1.0.3.data/data/agent_toolkit/data/skills/tooling/playwright-cli/scripts/executable_playwright_cli.sh +25 -0
- agent_toolkit_cli-1.0.3.dist-info/METADATA +411 -0
- agent_toolkit_cli-1.0.3.dist-info/RECORD +310 -0
- agent_toolkit_cli-1.0.3.dist-info/WHEEL +4 -0
- agent_toolkit_cli-1.0.3.dist-info/entry_points.txt +2 -0
- agent_toolkit_cli-1.0.3.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# Playwright CLI Workflows
|
|
2
|
+
|
|
3
|
+
Use the wrapper script and snapshot often.
|
|
4
|
+
Assume `PWCLI` is set and `pwcli` is an alias for `"$PWCLI"`.
|
|
5
|
+
When running inside a project, contain artifacts under `output/playwright/<label>/`.
|
|
6
|
+
|
|
7
|
+
## Standard interaction loop
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pwcli open https://example.com
|
|
11
|
+
pwcli snapshot
|
|
12
|
+
pwcli click e3
|
|
13
|
+
pwcli snapshot
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Form submission
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pwcli open https://example.com/form --headed
|
|
20
|
+
pwcli snapshot
|
|
21
|
+
pwcli fill e1 "user@example.com"
|
|
22
|
+
pwcli fill e2 "password123"
|
|
23
|
+
pwcli click e3
|
|
24
|
+
pwcli snapshot
|
|
25
|
+
pwcli screenshot
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Data extraction
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pwcli open https://example.com
|
|
32
|
+
pwcli snapshot
|
|
33
|
+
pwcli eval "document.title"
|
|
34
|
+
pwcli eval "el => el.textContent" e12
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Debugging and inspection
|
|
38
|
+
|
|
39
|
+
Capture console messages and network activity after reproducing an issue:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pwcli console warning
|
|
43
|
+
pwcli network
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Record a trace around a suspicious flow:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pwcli tracing-start
|
|
50
|
+
# reproduce the issue
|
|
51
|
+
pwcli tracing-stop
|
|
52
|
+
pwcli screenshot
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Sessions
|
|
56
|
+
|
|
57
|
+
Use sessions to isolate work across projects:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
pwcli --session marketing open https://example.com
|
|
61
|
+
pwcli --session marketing snapshot
|
|
62
|
+
pwcli --session checkout open https://example.com/checkout
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Or set the session once:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
export PLAYWRIGHT_CLI_SESSION=checkout
|
|
69
|
+
pwcli open https://example.com/checkout
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Configuration file
|
|
73
|
+
|
|
74
|
+
By default the CLI reads `playwright-cli.json` from the current directory. Use
|
|
75
|
+
`--config` to point at a specific file.
|
|
76
|
+
|
|
77
|
+
Minimal example:
|
|
78
|
+
|
|
79
|
+
```json
|
|
80
|
+
{
|
|
81
|
+
"browser": {
|
|
82
|
+
"launchOptions": {
|
|
83
|
+
"headless": false
|
|
84
|
+
},
|
|
85
|
+
"contextOptions": {
|
|
86
|
+
"viewport": { "width": 1280, "height": 720 }
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
## Troubleshooting
|
|
93
|
+
|
|
94
|
+
- If an element ref fails, run `pwcli snapshot` again and retry.
|
|
95
|
+
- If the page looks wrong, re-open with `--headed` and resize the window.
|
|
96
|
+
- If a flow depends on prior state, use a named `--session`.
|
|
97
|
+
- If `npx` is blocked by your AI tool's sandbox, authorize outbound network
|
|
98
|
+
for this skill rather than disabling sandboxing globally.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -euo pipefail
|
|
3
|
+
|
|
4
|
+
if ! command -v npx >/dev/null 2>&1; then
|
|
5
|
+
echo "Error: npx is required but not found on PATH." >&2
|
|
6
|
+
exit 1
|
|
7
|
+
fi
|
|
8
|
+
|
|
9
|
+
has_session_flag="false"
|
|
10
|
+
for arg in "$@"; do
|
|
11
|
+
case "$arg" in
|
|
12
|
+
--session | --session=*)
|
|
13
|
+
has_session_flag="true"
|
|
14
|
+
break
|
|
15
|
+
;;
|
|
16
|
+
esac
|
|
17
|
+
done
|
|
18
|
+
|
|
19
|
+
cmd=(npx --yes --package @playwright/cli playwright-cli)
|
|
20
|
+
if [[ ${has_session_flag} != "true" && -n ${PLAYWRIGHT_CLI_SESSION:-} ]]; then
|
|
21
|
+
cmd+=(--session "${PLAYWRIGHT_CLI_SESSION}")
|
|
22
|
+
fi
|
|
23
|
+
cmd+=("$@")
|
|
24
|
+
|
|
25
|
+
exec "${cmd[@]}"
|
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-toolkit-cli
|
|
3
|
+
Version: 1.0.3
|
|
4
|
+
Summary: Composable AI agent toolkit โ loops, skills, profiles, and MCP for Claude Code, Cursor, OpenCode, Windsurf, and more
|
|
5
|
+
Project-URL: Homepage, https://github.com/ulises-jeremias/agent-toolkit
|
|
6
|
+
Project-URL: Repository, https://github.com/ulises-jeremias/agent-toolkit.git
|
|
7
|
+
Project-URL: Issues, https://github.com/ulises-jeremias/agent-toolkit/issues
|
|
8
|
+
Project-URL: Changelog, https://github.com/ulises-jeremias/agent-toolkit/blob/main/CHANGELOG.md
|
|
9
|
+
License: MIT License
|
|
10
|
+
|
|
11
|
+
Copyright (c) 2026 Ulises Jeremias
|
|
12
|
+
|
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
15
|
+
in the Software without restriction, including without limitation the rights
|
|
16
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
17
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
18
|
+
furnished to do so, subject to the following conditions:
|
|
19
|
+
|
|
20
|
+
The above copyright notice and this permission notice shall be included in all
|
|
21
|
+
copies or substantial portions of the Software.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
27
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
29
|
+
SOFTWARE.
|
|
30
|
+
License-File: LICENSE
|
|
31
|
+
Keywords: agent-toolkit,agent-toolkit-cli,ai-agents,claude-code,cursor,github-copilot,loops,mcp,opencode,skills,windsurf
|
|
32
|
+
Classifier: Development Status :: 4 - Beta
|
|
33
|
+
Classifier: Environment :: Console
|
|
34
|
+
Classifier: Intended Audience :: Developers
|
|
35
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
36
|
+
Classifier: Programming Language :: Python :: 3
|
|
37
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
41
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
42
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
43
|
+
Requires-Python: >=3.10
|
|
44
|
+
Provides-Extra: all
|
|
45
|
+
Requires-Dist: pyyaml>=6.0; extra == 'all'
|
|
46
|
+
Provides-Extra: dev
|
|
47
|
+
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
48
|
+
Requires-Dist: ruff>=0.1.0; extra == 'dev'
|
|
49
|
+
Provides-Extra: yaml
|
|
50
|
+
Requires-Dist: pyyaml>=6.0; extra == 'yaml'
|
|
51
|
+
Description-Content-Type: text/markdown
|
|
52
|
+
|
|
53
|
+
<p align="center">
|
|
54
|
+
<img src="https://github.com/ulises-jeremias/agent-toolkit/blob/main/static/banner.svg?raw=true" width="100%">
|
|
55
|
+
</p>
|
|
56
|
+
|
|
57
|
+
<div align="center">
|
|
58
|
+
|
|
59
|
+
# ๐ ๏ธ agent-toolkit
|
|
60
|
+
|
|
61
|
+
**Composable AI agent capabilities for every major coding assistant**
|
|
62
|
+
|
|
63
|
+
<p>
|
|
64
|
+
<a href="https://github.com/ulises-jeremias/agent-toolkit/actions/workflows/validate.yml">
|
|
65
|
+
<img src="https://img.shields.io/github/actions/workflow/status/ulises-jeremias/agent-toolkit/validate.yml?branch=main&label=validate&style=for-the-badge&labelColor=0d1117&color=9945ff" alt="Validate"/>
|
|
66
|
+
</a>
|
|
67
|
+
<a href="https://github.com/ulises-jeremias/agent-toolkit/actions/workflows/mega-linter.yml">
|
|
68
|
+
<img src="https://img.shields.io/github/actions/workflow/status/ulises-jeremias/agent-toolkit/mega-linter.yml?branch=main&label=megalinter&style=for-the-badge&labelColor=0d1117&color=00d4ff" alt="MegaLinter"/>
|
|
69
|
+
</a>
|
|
70
|
+
<a href="https://github.com/vercel-labs/skills">
|
|
71
|
+
<img src="https://img.shields.io/badge/Agent%20Skills-compatible-00ff88?style=for-the-badge&labelColor=0d1117" alt="Agent Skills compatible"/>
|
|
72
|
+
</a>
|
|
73
|
+
<a href="LICENSE">
|
|
74
|
+
<img src="https://img.shields.io/badge/License-MIT-ff6b35?style=for-the-badge&labelColor=0d1117" alt="MIT License"/>
|
|
75
|
+
</a>
|
|
76
|
+
</p>
|
|
77
|
+
|
|
78
|
+
<p>
|
|
79
|
+
<img src="https://img.shields.io/badge/skills-52-9945ff?style=for-the-badge&labelColor=0d1117" alt="52 Skills"/>
|
|
80
|
+
<img src="https://img.shields.io/badge/agents-16-00d4ff?style=for-the-badge&labelColor=0d1117" alt="16 Agents"/>
|
|
81
|
+
<img src="https://img.shields.io/badge/loops-10-ff6b35?style=for-the-badge&labelColor=0d1117" alt="10 Loops"/>
|
|
82
|
+
<img src="https://img.shields.io/badge/plugins-3-ff00aa?style=for-the-badge&labelColor=0d1117" alt="3 Plugins"/>
|
|
83
|
+
</p>
|
|
84
|
+
|
|
85
|
+
<p>
|
|
86
|
+
<a href="profiles/claude-code/">
|
|
87
|
+
<img src="https://img.shields.io/badge/Claude%20Code-plugin-9945ff?style=for-the-badge&labelColor=0d1117&logo=anthropic&logoColor=white" alt="Claude Code"/>
|
|
88
|
+
</a>
|
|
89
|
+
<a href="profiles/cursor/">
|
|
90
|
+
<img src="https://img.shields.io/badge/Cursor-rules-00d4ff?style=for-the-badge&labelColor=0d1117" alt="Cursor"/>
|
|
91
|
+
</a>
|
|
92
|
+
<a href="profiles/opencode/">
|
|
93
|
+
<img src="https://img.shields.io/badge/OpenCode-agents-ff6b35?style=for-the-badge&labelColor=0d1117" alt="OpenCode"/>
|
|
94
|
+
</a>
|
|
95
|
+
<a href="profiles/copilot/">
|
|
96
|
+
<img src="https://img.shields.io/badge/GitHub%20Copilot-instructions-00ff88?style=for-the-badge&labelColor=0d1117&logo=github&logoColor=white" alt="GitHub Copilot"/>
|
|
97
|
+
</a>
|
|
98
|
+
<a href="profiles/windsurf/">
|
|
99
|
+
<img src="https://img.shields.io/badge/Windsurf-rules-0080ff?style=for-the-badge&labelColor=0d1117" alt="Windsurf"/>
|
|
100
|
+
</a>
|
|
101
|
+
<a href="profiles/pi/">
|
|
102
|
+
<img src="https://img.shields.io/badge/Pi%20Agent-skills-ff00aa?style=for-the-badge&labelColor=0d1117" alt="Pi Agent"/>
|
|
103
|
+
</a>
|
|
104
|
+
</p>
|
|
105
|
+
|
|
106
|
+
[๐ Documentation](docs/) โข
|
|
107
|
+
[๐ Quick Install](#-quick-install) โข
|
|
108
|
+
[๐ ๏ธ Skills](#%EF%B8%8F-skills--52-across-9-domains) โข
|
|
109
|
+
[๐ค Agents](#-agent-personas) โข
|
|
110
|
+
[๐ Loops](#-loop-engineering) โข
|
|
111
|
+
[๐ค Contributing](#-contributing)
|
|
112
|
+
|
|
113
|
+
</div>
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
## โจ What is agent-toolkit?
|
|
118
|
+
|
|
119
|
+
**agent-toolkit** is a modular collection of skills, agent personas, MCP configuration templates, and loop engineering patterns that work across all major AI coding assistants. Instead of maintaining separate prompt libraries for each tool, you keep **one source of truth** and deploy exactly what each tool needs.
|
|
120
|
+
|
|
121
|
+
One toolkit. Any coding assistant. Zero duplication.
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
# Get everything in one command
|
|
125
|
+
npx skills add ulises-jeremias/agent-toolkit -g
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
<div align="center">
|
|
129
|
+
<img src="https://github.com/ulises-jeremias/agent-toolkit/blob/main/static/architecture.svg?raw=true" width="88%">
|
|
130
|
+
</div>
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## ๐ Quick Install
|
|
135
|
+
|
|
136
|
+
### Method 1: Claude Code Plugin Marketplace (recommended)
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
/plugin marketplace add ulises-jeremias/agent-toolkit
|
|
140
|
+
/plugin install agent-toolkit-core@agent-toolkit
|
|
141
|
+
/plugin install agent-toolkit-agents@agent-toolkit
|
|
142
|
+
/plugin install agent-toolkit-forge@agent-toolkit
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Method 2: npx skills (Agent Skills standard)
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
# Global install โ all tools pick up skills automatically
|
|
149
|
+
npx skills add ulises-jeremias/agent-toolkit -g
|
|
150
|
+
|
|
151
|
+
# Project-scoped
|
|
152
|
+
npx skills add ulises-jeremias/agent-toolkit
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### Method 3: Manual install (per tool)
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
git clone https://github.com/ulises-jeremias/agent-toolkit ~/.agent-toolkit
|
|
159
|
+
|
|
160
|
+
# Claude Code โ reference in .claude/settings.json
|
|
161
|
+
# Cursor โ copy profiles/cursor/rules/*.mdc โ .cursor/rules/
|
|
162
|
+
# OpenCode โ copy profiles/opencode/ โ ~/.config/opencode/
|
|
163
|
+
# Copilot โ copy profiles/copilot/copilot-instructions.md โ .github/
|
|
164
|
+
# Windsurf โ copy profiles/windsurf/ โ ~/.codeium/windsurf/
|
|
165
|
+
# Pi Agent โ copy profiles/pi/skills/ โ ~/.pi/agent/skills/
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
### Method 4: Auto-detect install script
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
git clone https://github.com/ulises-jeremias/agent-toolkit.git
|
|
172
|
+
bash agent-toolkit/scripts/install.sh
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
The script detects your active tools and deploys the right profiles automatically.
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
## ๐ฅ๏ธ Supported Tools
|
|
180
|
+
|
|
181
|
+
<div align="center">
|
|
182
|
+
<img src="https://github.com/ulises-jeremias/agent-toolkit/blob/main/static/tools-grid.svg?raw=true" width="96%">
|
|
183
|
+
</div>
|
|
184
|
+
|
|
185
|
+
| Tool | Type | What's deployed |
|
|
186
|
+
|------|------|-----------------|
|
|
187
|
+
| **Claude Code** | Plugin + CLI | Plugin manifest, skill references, settings |
|
|
188
|
+
| **Cursor** | IDE | `.mdc` rule files per domain |
|
|
189
|
+
| **OpenCode** | TUI | System prompt overlays, agent configs |
|
|
190
|
+
| **GitHub Copilot** | IDE | `copilot-instructions.md` with domain selection |
|
|
191
|
+
| **Windsurf** | IDE | Rules and memory files via Cascade |
|
|
192
|
+
| **Pi Agent** | Agentic harness | Skills and loop templates in Pi's native format |
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
|
|
196
|
+
## ๐ ๏ธ Skills โ 52 across 9 domains
|
|
197
|
+
|
|
198
|
+
All skills use `SKILL.md` frontmatter only โ no `skill.json` required. Fully compliant with the [Agent Skills spec](https://github.com/vercel-labs/skills).
|
|
199
|
+
|
|
200
|
+
| Domain | Count | Key Skills |
|
|
201
|
+
|--------|-------|------------|
|
|
202
|
+
| ๐ง `core` | 8 | memory, planning, context injection, session bootstrap |
|
|
203
|
+
| ๐ `delivery` | 9 | code-review, github-cli-workflow, gh-fix-ci, pr-fallback, commit |
|
|
204
|
+
| ๐จ `design` | 6 | ui-ux-pro-max, figma-implement-design, design-system-rules |
|
|
205
|
+
| โก `forge` | 7 | feature-dev, tdd, refactor-cleaner, simplify, code-connect |
|
|
206
|
+
| ๐ `integrations` | 8 | jira, confluence, slack, linear, clickup, notion |
|
|
207
|
+
| ๐ `data` | 5 | dbt-validation, snowflake-validation, pipeline-review |
|
|
208
|
+
| ๐ง `tooling` | 6 | git-worktrees, docker, ci-cd, env-setup, keybindings |
|
|
209
|
+
| ๐ก๏ธ `ops` | 3 | incident, security-review, performance-optimizer |
|
|
210
|
+
| ๐ `loops` | 10 | oss-pr-monitor, oss-triage, oss-daily-briefing |
|
|
211
|
+
|
|
212
|
+
Browse the full catalog: [`catalogs/skill-catalog.yaml`](catalogs/skill-catalog.yaml)
|
|
213
|
+
|
|
214
|
+
### Loading skills in Claude Code
|
|
215
|
+
|
|
216
|
+
```jsonc
|
|
217
|
+
// .claude/settings.json
|
|
218
|
+
{
|
|
219
|
+
"skills": [
|
|
220
|
+
"ulises-jeremias/agent-toolkit/skills/delivery/code-review",
|
|
221
|
+
"ulises-jeremias/agent-toolkit/skills/delivery/github-cli-workflow",
|
|
222
|
+
"ulises-jeremias/agent-toolkit/skills/delivery/gh-fix-ci"
|
|
223
|
+
]
|
|
224
|
+
}
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
---
|
|
228
|
+
|
|
229
|
+
## ๐ค Agent Personas
|
|
230
|
+
|
|
231
|
+
16 tool-agnostic agent persona definitions in `agents/`. Any supported AI coding assistant can import these via its profile config.
|
|
232
|
+
|
|
233
|
+
| Persona | Role |
|
|
234
|
+
|---------|------|
|
|
235
|
+
| ๐๏ธ `architect` | System design, tradeoffs, ADR drafting |
|
|
236
|
+
| ๐ `planner` | Task decomposition, sequencing, estimation |
|
|
237
|
+
| ๐ `code-reviewer` | Quality, maintainability, bug detection |
|
|
238
|
+
| ๐ท `typescript-reviewer` | TypeScript-specific review patterns |
|
|
239
|
+
| ๐ก๏ธ `security-reviewer` | Vulnerability audit, threat modeling |
|
|
240
|
+
| ๐๏ธ `database-reviewer` | Schema design, query optimization, migration safety |
|
|
241
|
+
| โก `performance-optimizer` | Profiling, complexity analysis, benchmarking |
|
|
242
|
+
| ๐งช `tdd-guide` | Test-first development, coverage strategy |
|
|
243
|
+
| ๐งน `refactor-cleaner` | Dead code removal, simplification |
|
|
244
|
+
| ๐จ `build-error-resolver` | CI failure diagnosis, dependency conflicts |
|
|
245
|
+
| ๐ญ `e2e-runner` | End-to-end test authoring and execution |
|
|
246
|
+
| ๐ `docs-lookup` | Documentation and API reference navigation |
|
|
247
|
+
| ๐ `reference-lookup` | Cross-repo pattern and convention search |
|
|
248
|
+
| ๐ค `assistant` | General-purpose project assistant |
|
|
249
|
+
| โ๏ธ `tech-assistant` | Stack-specific technical guidance |
|
|
250
|
+
| ๐ญ `explore` | Fast codebase search and discovery |
|
|
251
|
+
|
|
252
|
+
Full catalog: [`catalogs/agent-catalog.yaml`](catalogs/agent-catalog.yaml)
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
## ๐ Loop Engineering
|
|
257
|
+
|
|
258
|
+
Loops are recurring agentic workflows that run on a schedule or cadence. They follow a three-tier model:
|
|
259
|
+
|
|
260
|
+
<div align="center">
|
|
261
|
+
<img src="https://github.com/ulises-jeremias/agent-toolkit/blob/main/static/loop-tiers.svg?raw=true" width="88%">
|
|
262
|
+
</div>
|
|
263
|
+
|
|
264
|
+
| Tier | Cadence | Purpose |
|
|
265
|
+
|------|---------|---------|
|
|
266
|
+
| **L1** | Minutes to hours | Reactive, event-driven โ PR monitoring, triage, CI alerts |
|
|
267
|
+
| **L2** | Daily | Summaries, health checks, security sweeps, briefings |
|
|
268
|
+
| **L3** | Weekly / monthly | Trend analysis, reporting, maintenance sweeps |
|
|
269
|
+
|
|
270
|
+
### Loop Templates
|
|
271
|
+
|
|
272
|
+
| Template | Tier | Default Cadence | Description |
|
|
273
|
+
|----------|------|-----------------|-------------|
|
|
274
|
+
| `oss-pr-monitor` | L1 | Every 30 min | Monitor open PRs across OSS repos, flag stale or failing ones |
|
|
275
|
+
| `oss-triage` | L1 | Every hour | Triage new issues, apply labels, draft responses |
|
|
276
|
+
| `ci-health` | L1 | Every 15 min | Watch CI status, auto-diagnose failures |
|
|
277
|
+
| `oss-daily-briefing` | L2 | Daily | Summarize activity across all tracked OSS repos |
|
|
278
|
+
| `dependency-drift` | L2 | Daily | Detect outdated dependencies and open upgrade PRs |
|
|
279
|
+
| `security-sweep` | L2 | Daily | Run vulnerability scan across repos |
|
|
280
|
+
| `codeowner-review` | L2 | Daily | Remind code owners of pending reviews |
|
|
281
|
+
| `release-notes` | L3 | Weekly | Draft release notes from merged PRs |
|
|
282
|
+
| `stale-branch-cleanup` | L3 | Weekly | Identify and archive stale branches |
|
|
283
|
+
| `contributor-digest` | L3 | Weekly | Generate contributor activity digest |
|
|
284
|
+
|
|
285
|
+
Each loop template lives in `loops/<name>/` and contains a `request.md` prompt template, `report.md` output template, and `runbook.md` for human operators.
|
|
286
|
+
|
|
287
|
+
---
|
|
288
|
+
|
|
289
|
+
## ๐ MCP Templates
|
|
290
|
+
|
|
291
|
+
Ready-to-use Model Context Protocol configuration templates. Drop into your MCP config directory and substitute your credentials.
|
|
292
|
+
|
|
293
|
+
| Template | Services Covered |
|
|
294
|
+
|----------|-----------------|
|
|
295
|
+
| `github` | Repos, PRs, issues, releases, actions |
|
|
296
|
+
| `slack` | Channels, messages, reactions, canvases |
|
|
297
|
+
| `notion` | Pages, databases, blocks |
|
|
298
|
+
| `linear` | Issues, projects, cycles, comments |
|
|
299
|
+
| `figma` | Files, components, design tokens |
|
|
300
|
+
| `clickup` | Tasks, lists, spaces, docs, comments |
|
|
301
|
+
|
|
302
|
+
Templates live in [`mcp/templates/`](mcp/templates/). Each file is a `.json` with clearly marked placeholder values.
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
## ๐ฆ Plugins
|
|
307
|
+
|
|
308
|
+
Three plugins are available in the Claude Code and Cursor marketplaces:
|
|
309
|
+
|
|
310
|
+
| Plugin | What's included |
|
|
311
|
+
|--------|-----------------|
|
|
312
|
+
| `agent-toolkit-core` | Core, delivery, integrations, ops, and tooling domains โ everyday coding workflows |
|
|
313
|
+
| `agent-toolkit-agents` | All 16 agent personas โ architect, planner, reviewers, TDD guide, and more |
|
|
314
|
+
| `agent-toolkit-forge` | Design, forge, and data domains โ code generation, UI/UX, TDD, dbt/Snowflake |
|
|
315
|
+
|
|
316
|
+
Plugin manifests: [`.claude-plugin/marketplace.json`](.claude-plugin/marketplace.json) ยท [`.cursor-plugin/marketplace.json`](.cursor-plugin/marketplace.json)
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## ๐ฏ Solution Packs
|
|
321
|
+
|
|
322
|
+
Packs bundle skills, agents, and loops for a specific team context. Load a pack to bring in everything a setup needs in one step.
|
|
323
|
+
|
|
324
|
+
| Pack | Description |
|
|
325
|
+
|------|-------------|
|
|
326
|
+
| `oss-ecosystem` | Full OSS maintainer setup: triage, PR monitor, briefings, contributor digest |
|
|
327
|
+
| `startup-delivery` | Fast delivery focus: code review, CI fix, PR automation, security sweep |
|
|
328
|
+
| `enterprise-ops` | Governance-heavy: incident response, security review, codeowner workflows |
|
|
329
|
+
|
|
330
|
+
Browse packs: [`packs/`](packs/)
|
|
331
|
+
|
|
332
|
+
---
|
|
333
|
+
|
|
334
|
+
## ๐ Documentation
|
|
335
|
+
|
|
336
|
+
| Guide | Description |
|
|
337
|
+
|-------|-------------|
|
|
338
|
+
| [๐จ How to add a skill](docs/HOW_TO_ADD_SKILL.md) | Create a new skill with SKILL.md frontmatter |
|
|
339
|
+
| [๐ค How to add an agent](docs/HOW_TO_ADD_AGENT.md) | Define a new agent persona |
|
|
340
|
+
| [๐ How to create a loop](docs/HOW_TO_CREATE_LOOP.md) | Build a recurring agentic workflow |
|
|
341
|
+
| [๐ OSS Maintenance example](examples/oss-maintenance/) | Full walkthrough of the oss-ecosystem pack |
|
|
342
|
+
| [๐ Project onboarding example](examples/project-onboarding/) | Bootstrap a new project with agent-toolkit |
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
## ๐๏ธ Architecture
|
|
347
|
+
|
|
348
|
+
One source of truth, deployed per-tool. Each profile in `profiles/` adapts the shared skills and agents to the conventions of its target tool.
|
|
349
|
+
|
|
350
|
+
```
|
|
351
|
+
agent-toolkit/
|
|
352
|
+
โโโ skills/ # 52 skills across 9 domains (SKILL.md frontmatter)
|
|
353
|
+
โโโ agents/ # 16 tool-agnostic agent persona definitions
|
|
354
|
+
โโโ profiles/
|
|
355
|
+
โ โโโ claude-code/ # Plugin manifest, skill references, settings
|
|
356
|
+
โ โโโ cursor/ # .mdc rule files per domain
|
|
357
|
+
โ โโโ opencode/ # System prompt overlays, agent configs
|
|
358
|
+
โ โโโ copilot/ # copilot-instructions.md with domain selection
|
|
359
|
+
โ โโโ windsurf/ # rules.md and memory files
|
|
360
|
+
โ โโโ pi/ # Skill definitions in Pi's native format
|
|
361
|
+
โโโ loops/ # 10 recurring loop engineering templates
|
|
362
|
+
โโโ mcp/templates/ # 6 MCP config templates (JSON)
|
|
363
|
+
โโโ packs/ # 3 solution packs
|
|
364
|
+
โโโ catalogs/ # skill-catalog.yaml, agent-catalog.yaml
|
|
365
|
+
โโโ schemas/ # JSON schemas for validation
|
|
366
|
+
โโโ docs/ # How-to guides and reference docs
|
|
367
|
+
โโโ examples/ # Worked examples
|
|
368
|
+
โโโ scripts/ # Install and validation scripts
|
|
369
|
+
```
|
|
370
|
+
|
|
371
|
+
### Automation tiers
|
|
372
|
+
|
|
373
|
+
| Tier | Trigger | Example |
|
|
374
|
+
|------|---------|---------|
|
|
375
|
+
| **L1** | Event / short interval | `oss-pr-monitor`, `ci-health` |
|
|
376
|
+
| **L1.5** | Scheduled short-cadence | `oss-triage`, `dependency-drift` |
|
|
377
|
+
| **L3** | Weekly / monthly | `release-notes`, `contributor-digest` |
|
|
378
|
+
|
|
379
|
+
---
|
|
380
|
+
|
|
381
|
+
## โ
Validation
|
|
382
|
+
|
|
383
|
+
```bash
|
|
384
|
+
bash scripts/validate-skills.sh
|
|
385
|
+
bash scripts/validate-loops.sh
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
Both scripts exit non-zero on failure with human-readable error messages. They run automatically in CI via the Validate and MegaLinter workflows.
|
|
389
|
+
|
|
390
|
+
---
|
|
391
|
+
|
|
392
|
+
## ๐ค Contributing
|
|
393
|
+
|
|
394
|
+
Contributions welcome. Please read [CONTRIBUTING.md](CONTRIBUTING.md) before opening a PR.
|
|
395
|
+
|
|
396
|
+
1. Fork the repo and create a branch: `feat/my-skill`
|
|
397
|
+
2. Add your skill under the appropriate domain in `skills/` โ use `SKILL.md` frontmatter only
|
|
398
|
+
3. Run `bash scripts/validate-skills.sh` โ all checks must pass
|
|
399
|
+
4. Open a PR with a clear description of what the skill does and which tools it supports
|
|
400
|
+
|
|
401
|
+
See [How to add a skill](docs/HOW_TO_ADD_SKILL.md) for the full authoring guide.
|
|
402
|
+
|
|
403
|
+
---
|
|
404
|
+
|
|
405
|
+
<div align="center">
|
|
406
|
+
|
|
407
|
+
[๐ Docs](docs/) ยท [๐ Issues](https://github.com/ulises-jeremias/agent-toolkit/issues) ยท [๐ฌ Discussions](https://github.com/ulises-jeremias/agent-toolkit/discussions) ยท [MIT License](LICENSE)
|
|
408
|
+
|
|
409
|
+
<sub>Built for the agentic age โ one toolkit, every assistant.</sub>
|
|
410
|
+
|
|
411
|
+
</div>
|