@openhands/extensions 0.0.1-alpha → 0.2.0
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.
- package/.agents/skills/custom-codereview-guide.md +25 -0
- package/.github/pull_request_template.md +38 -0
- package/.github/release.yml +14 -0
- package/.github/workflows/check-extensions.yml +72 -0
- package/.github/workflows/npm-publish.yml +89 -0
- package/.github/workflows/pr.yml +30 -0
- package/.github/workflows/release.yml +24 -0
- package/.github/workflows/tests.yml +25 -0
- package/.github/workflows/vulnerability-scan.yml +87 -0
- package/.release-please-manifest.json +3 -0
- package/AGENTS.md +132 -0
- package/README.md +10 -0
- package/analysis_results.md +162 -0
- package/marketplaces/large-codebase.json +66 -0
- package/marketplaces/openhands-extensions.json +682 -0
- package/package.json +4 -10
- package/plugins/README.md +30 -0
- package/plugins/city-weather/.plugin/plugin.json +13 -0
- package/plugins/city-weather/README.md +145 -0
- package/plugins/city-weather/commands/now.md +56 -0
- package/plugins/cobol-modernization/.plugin/plugin.json +19 -0
- package/plugins/cobol-modernization/README.md +201 -0
- package/plugins/cobol-modernization/references/troubleshooting.md +18 -0
- package/plugins/cobol-modernization/skills/build-setup/SKILL.md +78 -0
- package/plugins/cobol-modernization/skills/build-setup/scripts/install-gnucobol.sh +32 -0
- package/plugins/cobol-modernization/skills/cobol-modernization-overview/SKILL.md +113 -0
- package/plugins/cobol-modernization/skills/mainfraime-removal/SKILL.md +62 -0
- package/plugins/cobol-modernization/skills/mainfraime-removal/references/cics-transformation-examples.md +45 -0
- package/plugins/cobol-modernization/skills/mainframe-planning/SKILL.md +78 -0
- package/plugins/cobol-modernization/skills/to-java-migration/SKILL.md +59 -0
- package/plugins/cobol-modernization/skills/to-java-migration/references/cobol-to-java-example.md +58 -0
- package/plugins/cobol-modernization/skills/to-java-migration/references/datatype-mappings.md +19 -0
- package/plugins/issue-duplicate-checker/.plugin/plugin.json +13 -0
- package/plugins/issue-duplicate-checker/README.md +51 -0
- package/plugins/issue-duplicate-checker/action.yml +349 -0
- package/plugins/issue-duplicate-checker/scripts/auto_close_duplicate_issues.py +569 -0
- package/plugins/issue-duplicate-checker/scripts/issue_duplicate_check_openhands.py +681 -0
- package/plugins/issue-duplicate-checker/scripts/post_duplicate_notice.js +220 -0
- package/plugins/issue-duplicate-checker/scripts/remove_duplicate_candidate_label.js +27 -0
- package/plugins/magic-test/.plugin/plugin.json +13 -0
- package/plugins/magic-test/skills/magic-word/SKILL.md +33 -0
- package/plugins/migration-scoring/.plugin/plugin.json +19 -0
- package/plugins/migration-scoring/README.md +244 -0
- package/plugins/migration-scoring/skills/migration-mapping/SKILL.md +72 -0
- package/plugins/migration-scoring/skills/migration-report/SKILL.md +118 -0
- package/plugins/migration-scoring/skills/migration-scoring-overview/SKILL.md +126 -0
- package/plugins/migration-scoring/skills/score-quality/SKILL.md +54 -0
- package/plugins/migration-scoring/skills/score-quality/references/scoring-criteria.md +30 -0
- package/plugins/migration-scoring/skills/score-style/SKILL.md +106 -0
- package/plugins/onboarding/.plugin/plugin.json +20 -0
- package/plugins/onboarding/README.md +30 -0
- package/plugins/onboarding/references/criteria.md +144 -0
- package/plugins/onboarding/skills/agent-readiness-report/README.md +23 -0
- package/plugins/onboarding/skills/agent-readiness-report/SKILL.md +122 -0
- package/plugins/onboarding/skills/agent-readiness-report/scripts/scan_agent_instructions.sh +88 -0
- package/plugins/onboarding/skills/agent-readiness-report/scripts/scan_build_env.sh +114 -0
- package/plugins/onboarding/skills/agent-readiness-report/scripts/scan_feedback_loops.sh +133 -0
- package/plugins/onboarding/skills/agent-readiness-report/scripts/scan_policy.sh +113 -0
- package/plugins/onboarding/skills/agent-readiness-report/scripts/scan_workflows.sh +127 -0
- package/plugins/onboarding/skills/improve-agent-readiness/README.md +19 -0
- package/plugins/onboarding/skills/improve-agent-readiness/SKILL.md +167 -0
- package/plugins/onboarding/skills/setup-agents-md/README.md +15 -0
- package/plugins/onboarding/skills/setup-agents-md/SKILL.md +150 -0
- package/plugins/onboarding/skills/setup-openhands/README.md +20 -0
- package/plugins/onboarding/skills/setup-openhands/SKILL.md +56 -0
- package/plugins/onboarding/skills/setup-pr-review/README.md +23 -0
- package/plugins/onboarding/skills/setup-pr-review/SKILL.md +72 -0
- package/plugins/openhands/.plugin/plugin.json +13 -0
- package/plugins/openhands/README.md +52 -0
- package/plugins/openhands/SKILL.md +61 -0
- package/plugins/openhands/commands/create.md +55 -0
- package/plugins/openhands/commands/openhands-cloud.md +8 -0
- package/plugins/openhands/scripts/run.sh +69 -0
- package/plugins/pr-review/.plugin/plugin.json +13 -0
- package/plugins/pr-review/README.md +393 -0
- package/plugins/pr-review/action.yml +298 -0
- package/plugins/pr-review/scripts/agent_script.py +1282 -0
- package/plugins/pr-review/scripts/evaluate_review.py +655 -0
- package/plugins/pr-review/scripts/prompt.py +260 -0
- package/plugins/pr-review/workflows/pr-review-by-openhands.yml +51 -0
- package/plugins/pr-review/workflows/pr-review-evaluation.yml +85 -0
- package/plugins/qa-changes/.plugin/plugin.json +11 -0
- package/plugins/qa-changes/README.md +185 -0
- package/plugins/qa-changes/action.yml +181 -0
- package/plugins/qa-changes/scripts/agent_script.py +406 -0
- package/plugins/qa-changes/scripts/evaluate_qa_changes.py +385 -0
- package/plugins/qa-changes/scripts/prompt.py +174 -0
- package/plugins/qa-changes/workflows/qa-changes-by-openhands.yml +50 -0
- package/plugins/qa-changes/workflows/qa-changes-evaluation.yml +85 -0
- package/plugins/release-notes/.plugin/plugin.json +19 -0
- package/plugins/release-notes/README.md +283 -0
- package/plugins/release-notes/SKILL.md +83 -0
- package/plugins/release-notes/action.yml +117 -0
- package/plugins/release-notes/commands/release-notes.md +8 -0
- package/plugins/release-notes/scripts/agent_script.py +292 -0
- package/plugins/release-notes/scripts/generate_release_notes.py +733 -0
- package/plugins/release-notes/scripts/prompt.py +90 -0
- package/plugins/release-notes/scripts/validate_release_notes.py +328 -0
- package/plugins/release-notes/workflows/release-notes.yml +76 -0
- package/plugins/vulnerability-remediation/.plugin/plugin.json +19 -0
- package/plugins/vulnerability-remediation/README.md +217 -0
- package/plugins/vulnerability-remediation/action.yml +187 -0
- package/plugins/vulnerability-remediation/scripts/scan_and_remediate.py +561 -0
- package/plugins/vulnerability-remediation/workflows/vulnerability-scan.yml +87 -0
- package/pyproject.toml +12 -0
- package/release-please-config.json +16 -0
- package/scripts/sync_extensions.py +494 -0
- package/scripts/sync_openhands_sdk_skill.py +264 -0
- package/skills/README.md +159 -0
- package/skills/add-javadoc/.plugin/plugin.json +18 -0
- package/skills/add-javadoc/README.md +40 -0
- package/skills/add-javadoc/SKILL.md +35 -0
- package/skills/add-javadoc/references/example.md +32 -0
- package/skills/add-skill/.plugin/plugin.json +18 -0
- package/skills/add-skill/README.md +67 -0
- package/skills/add-skill/SKILL.md +47 -0
- package/skills/add-skill/scripts/fetch_skill.py +259 -0
- package/skills/agent-creator/.plugin/plugin.json +20 -0
- package/skills/agent-creator/README.md +104 -0
- package/skills/agent-creator/SKILL.md +190 -0
- package/skills/agent-creator/commands/agent-creator.md +8 -0
- package/skills/agent-creator/references/fallback.md +117 -0
- package/skills/agent-memory/.plugin/plugin.json +18 -0
- package/skills/agent-memory/README.md +35 -0
- package/skills/agent-memory/SKILL.md +30 -0
- package/skills/agent-memory/commands/remember.md +8 -0
- package/skills/agent-sdk-builder/.plugin/plugin.json +18 -0
- package/skills/agent-sdk-builder/README.md +40 -0
- package/skills/agent-sdk-builder/SKILL.md +37 -0
- package/skills/agent-sdk-builder/commands/agent-builder.md +8 -0
- package/skills/azure-devops/.plugin/plugin.json +18 -0
- package/skills/azure-devops/README.md +55 -0
- package/skills/azure-devops/SKILL.md +50 -0
- package/skills/bitbucket/.plugin/plugin.json +17 -0
- package/skills/bitbucket/README.md +50 -0
- package/skills/bitbucket/SKILL.md +45 -0
- package/skills/code-review/.plugin/plugin.json +19 -0
- package/skills/code-review/README.md +18 -0
- package/skills/code-review/SKILL.md +208 -0
- package/skills/code-review/commands/codereview-roasted.md +8 -0
- package/skills/code-review/commands/codereview.md +8 -0
- package/skills/code-review/references/risk-evaluation.md +41 -0
- package/skills/code-review/references/supply-chain-security.md +31 -0
- package/skills/code-simplifier/.plugin/plugin.json +21 -0
- package/skills/code-simplifier/README.md +30 -0
- package/skills/code-simplifier/SKILL.md +91 -0
- package/skills/code-simplifier/commands/simplify.md +8 -0
- package/skills/code-simplifier/references/code-quality-review.md +86 -0
- package/skills/code-simplifier/references/code-reuse-review.md +63 -0
- package/skills/code-simplifier/references/efficiency-review.md +81 -0
- package/skills/datadog/.plugin/plugin.json +19 -0
- package/skills/datadog/README.md +100 -0
- package/skills/datadog/SKILL.md +95 -0
- package/skills/deno/.plugin/plugin.json +18 -0
- package/skills/deno/README.md +5 -0
- package/skills/deno/SKILL.md +99 -0
- package/skills/deno/references/README.md +6 -0
- package/skills/discord/.plugin/plugin.json +18 -0
- package/skills/discord/README.md +31 -0
- package/skills/discord/SKILL.md +109 -0
- package/skills/discord/__init__.py +0 -0
- package/skills/discord/references/REFERENCE.md +78 -0
- package/skills/discord/scripts/__init__.py +0 -0
- package/skills/discord/scripts/_http.py +127 -0
- package/skills/discord/scripts/post_webhook.py +106 -0
- package/skills/discord/scripts/send_message.py +102 -0
- package/skills/docker/.plugin/plugin.json +17 -0
- package/skills/docker/README.md +34 -0
- package/skills/docker/SKILL.md +29 -0
- package/skills/evidence-based-citations/.plugin/plugin.json +20 -0
- package/skills/evidence-based-citations/README.md +31 -0
- package/skills/evidence-based-citations/SKILL.md +59 -0
- package/skills/flarglebargle/.plugin/plugin.json +16 -0
- package/skills/flarglebargle/README.md +14 -0
- package/skills/flarglebargle/SKILL.md +9 -0
- package/skills/frontend-design/.plugin/plugin.json +21 -0
- package/skills/frontend-design/LICENSE.txt +177 -0
- package/skills/frontend-design/README.md +42 -0
- package/skills/frontend-design/SKILL.md +42 -0
- package/skills/github/.plugin/plugin.json +19 -0
- package/skills/github/README.md +42 -0
- package/skills/github/SKILL.md +106 -0
- package/skills/github-pr-review/.plugin/plugin.json +18 -0
- package/skills/github-pr-review/README.md +145 -0
- package/skills/github-pr-review/SKILL.md +148 -0
- package/skills/github-pr-review/commands/github-pr-review.md +8 -0
- package/skills/github-pr-reviewer/.plugin/plugin.json +20 -0
- package/skills/github-pr-reviewer/README.md +34 -0
- package/skills/github-pr-reviewer/SKILL.md +89 -0
- package/skills/github-pr-reviewer/commands/pr-reviewer:setup.md +8 -0
- package/skills/github-repo-monitor/.plugin/plugin.json +22 -0
- package/skills/github-repo-monitor/README.md +70 -0
- package/skills/github-repo-monitor/SKILL.md +316 -0
- package/skills/github-repo-monitor/commands/github-monitor:poll.md +8 -0
- package/skills/github-repo-monitor/references/github-api.md +241 -0
- package/skills/github-repo-monitor/references/state-schema.md +160 -0
- package/skills/github-repo-monitor/scripts/main.py +915 -0
- package/skills/github-repo-monitor/tests/test_main.py +400 -0
- package/skills/gitlab/.plugin/plugin.json +17 -0
- package/skills/gitlab/README.md +37 -0
- package/skills/gitlab/SKILL.md +32 -0
- package/skills/incident-retrospective/.plugin/plugin.json +21 -0
- package/skills/incident-retrospective/README.md +34 -0
- package/skills/incident-retrospective/SKILL.md +98 -0
- package/skills/incident-retrospective/commands/incident-retro:setup.md +8 -0
- package/skills/iterate/.plugin/plugin.json +13 -0
- package/skills/iterate/README.md +25 -0
- package/skills/iterate/SKILL.md +399 -0
- package/skills/iterate/commands/babysit.md +8 -0
- package/skills/iterate/commands/iterate.md +8 -0
- package/skills/iterate/commands/verify.md +8 -0
- package/skills/iterate/references/heuristics.md +58 -0
- package/skills/iterate/references/verification.md +96 -0
- package/skills/jupyter/.plugin/plugin.json +18 -0
- package/skills/jupyter/README.md +55 -0
- package/skills/jupyter/SKILL.md +50 -0
- package/skills/kubernetes/.plugin/plugin.json +18 -0
- package/skills/kubernetes/README.md +53 -0
- package/skills/kubernetes/SKILL.md +48 -0
- package/skills/learn-from-code-review/.plugin/plugin.json +19 -0
- package/skills/learn-from-code-review/README.md +64 -0
- package/skills/learn-from-code-review/SKILL.md +186 -0
- package/skills/learn-from-code-review/commands/learn-from-reviews.md +8 -0
- package/skills/linear/.plugin/plugin.json +19 -0
- package/skills/linear/README.md +58 -0
- package/skills/linear/SKILL.md +213 -0
- package/skills/linear-triage/.plugin/plugin.json +21 -0
- package/skills/linear-triage/README.md +34 -0
- package/skills/linear-triage/SKILL.md +91 -0
- package/skills/linear-triage/commands/linear-triage:setup.md +8 -0
- package/skills/notion/.plugin/plugin.json +17 -0
- package/skills/notion/README.md +114 -0
- package/skills/notion/SKILL.md +109 -0
- package/skills/npm/.plugin/plugin.json +17 -0
- package/skills/npm/README.md +14 -0
- package/skills/npm/SKILL.md +9 -0
- package/skills/openhands-api/.plugin/plugin.json +22 -0
- package/skills/openhands-api/README.md +48 -0
- package/skills/openhands-api/SKILL.md +399 -0
- package/skills/openhands-api/references/README.md +33 -0
- package/skills/openhands-api/references/TROUBLESHOOTING.md +81 -0
- package/skills/openhands-api/references/example_prompt.md +12 -0
- package/skills/openhands-api/scripts/openhands_api.py +606 -0
- package/skills/openhands-api/scripts/openhands_api.ts +252 -0
- package/skills/openhands-automation/.plugin/plugin.json +19 -0
- package/skills/openhands-automation/README.md +89 -0
- package/skills/openhands-automation/SKILL.md +875 -0
- package/skills/openhands-automation/commands/automation:create.md +8 -0
- package/skills/openhands-automation/references/ab-testing.md +185 -0
- package/skills/openhands-automation/references/custom-automation.md +644 -0
- package/skills/openhands-sdk/.plugin/plugin.json +20 -0
- package/skills/openhands-sdk/README.md +22 -0
- package/skills/openhands-sdk/SKILL.md +229 -0
- package/skills/openhands-sdk/commands/sdk.md +8 -0
- package/skills/pdflatex/.plugin/plugin.json +18 -0
- package/skills/pdflatex/README.md +39 -0
- package/skills/pdflatex/SKILL.md +34 -0
- package/skills/prd/.plugin/plugin.json +19 -0
- package/skills/prd/README.md +28 -0
- package/skills/prd/SKILL.md +237 -0
- package/skills/prd/commands/prd.md +8 -0
- package/skills/qa-changes/README.md +18 -0
- package/skills/qa-changes/SKILL.md +229 -0
- package/skills/qa-changes/commands/qa-changes.md +8 -0
- package/skills/release-notes/README.md +24 -0
- package/skills/release-notes/SKILL.md +19 -0
- package/skills/release-notes/commands/release-notes.md +8 -0
- package/skills/research-brief/.plugin/plugin.json +20 -0
- package/skills/research-brief/README.md +34 -0
- package/skills/research-brief/SKILL.md +99 -0
- package/skills/research-brief/commands/research-brief:setup.md +8 -0
- package/skills/security/.plugin/plugin.json +18 -0
- package/skills/security/README.md +38 -0
- package/skills/security/SKILL.md +33 -0
- package/skills/skill-creator/.plugin/plugin.json +17 -0
- package/skills/skill-creator/LICENSE.txt +202 -0
- package/skills/skill-creator/README.md +182 -0
- package/skills/skill-creator/SKILL.md +545 -0
- package/skills/skill-creator/references/output-patterns.md +82 -0
- package/skills/skill-creator/references/workflows.md +28 -0
- package/skills/skill-creator/scripts/init_skill.py +303 -0
- package/skills/skill-creator/scripts/quick_validate.py +95 -0
- package/skills/slack-channel-monitor/.plugin/plugin.json +21 -0
- package/skills/slack-channel-monitor/README.md +91 -0
- package/skills/slack-channel-monitor/SKILL.md +276 -0
- package/skills/slack-channel-monitor/commands/slack-monitor:poll.md +8 -0
- package/skills/slack-channel-monitor/references/slack-api.md +207 -0
- package/skills/slack-channel-monitor/references/state-schema.md +180 -0
- package/skills/slack-channel-monitor/scripts/main.py +962 -0
- package/skills/slack-standup-digest/.plugin/plugin.json +21 -0
- package/skills/slack-standup-digest/README.md +34 -0
- package/skills/slack-standup-digest/SKILL.md +92 -0
- package/skills/slack-standup-digest/commands/standup-digest:setup.md +8 -0
- package/skills/spark-version-upgrade/.plugin/plugin.json +20 -0
- package/skills/spark-version-upgrade/README.md +54 -0
- package/skills/spark-version-upgrade/SKILL.md +233 -0
- package/skills/ssh/.plugin/plugin.json +18 -0
- package/skills/ssh/README.md +140 -0
- package/skills/ssh/SKILL.md +135 -0
- package/skills/swift-linux/.plugin/plugin.json +17 -0
- package/skills/swift-linux/README.md +86 -0
- package/skills/swift-linux/SKILL.md +81 -0
- package/skills/theme-factory/.plugin/plugin.json +19 -0
- package/skills/theme-factory/LICENSE.txt +202 -0
- package/skills/theme-factory/README.md +58 -0
- package/skills/theme-factory/SKILL.md +59 -0
- package/skills/theme-factory/theme-showcase.pdf +0 -0
- package/skills/theme-factory/themes/arctic-frost.md +19 -0
- package/skills/theme-factory/themes/botanical-garden.md +19 -0
- package/skills/theme-factory/themes/desert-rose.md +19 -0
- package/skills/theme-factory/themes/forest-canopy.md +19 -0
- package/skills/theme-factory/themes/golden-hour.md +19 -0
- package/skills/theme-factory/themes/midnight-galaxy.md +19 -0
- package/skills/theme-factory/themes/modern-minimalist.md +19 -0
- package/skills/theme-factory/themes/ocean-depths.md +19 -0
- package/skills/theme-factory/themes/sunset-boulevard.md +19 -0
- package/skills/theme-factory/themes/tech-innovation.md +19 -0
- package/skills/uv/.plugin/plugin.json +18 -0
- package/skills/uv/README.md +5 -0
- package/skills/uv/SKILL.md +95 -0
- package/skills/uv/references/README.md +5 -0
- package/skills/vercel/.plugin/plugin.json +18 -0
- package/skills/vercel/README.md +108 -0
- package/skills/vercel/SKILL.md +103 -0
- package/tests/test_add_skill_installs_to_agents_dir.py +42 -0
- package/tests/test_catalogs.py +109 -0
- package/tests/test_code_review_risk_evaluation.py +94 -0
- package/tests/test_issue_duplicate_checker.py +240 -0
- package/tests/test_openhands_api_python.py +152 -0
- package/tests/test_plugin_manifest.py +83 -0
- package/tests/test_pr_review_diff_payload.py +202 -0
- package/tests/test_pr_review_feedback.py +263 -0
- package/tests/test_pr_review_prompt.py +152 -0
- package/tests/test_pr_review_review_context.py +253 -0
- package/tests/test_qa_changes.py +232 -0
- package/tests/test_qa_changes_evaluation.py +259 -0
- package/tests/test_release_notes_generator.py +990 -0
- package/tests/test_sdk_loading.py +150 -0
- package/tests/test_skill_plugin_loading.py +149 -0
- package/tests/test_skills_have_readme.py +66 -0
- package/tests/test_sync_extensions.py +292 -0
- package/tests/test_workflow_sync.py +46 -0
- package/utils/analysis/README.md +7 -0
- package/utils/analysis/laminar_signals/README.md +211 -0
- package/utils/analysis/laminar_signals/analyze.py +780 -0
- package/utils/analysis/laminar_signals/templates/default.j2 +49 -0
- package/utils/analysis/laminar_signals/templates/pr_review.j2 +61 -0
|
@@ -0,0 +1,682 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openhands-extensions",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "OpenHands",
|
|
5
|
+
"email": "contact@all-hands.dev"
|
|
6
|
+
},
|
|
7
|
+
"metadata": {
|
|
8
|
+
"description": "Official skills and plugins for OpenHands \u2014 the open-source AI software engineer.",
|
|
9
|
+
"maintainer": "OpenHands",
|
|
10
|
+
"homepage": "https://github.com/OpenHands/extensions"
|
|
11
|
+
},
|
|
12
|
+
"plugins": [
|
|
13
|
+
{
|
|
14
|
+
"name": "agent-creator",
|
|
15
|
+
"source": "./skills/agent-creator",
|
|
16
|
+
"description": "Create file-based sub-agents as Markdown files \u2014 no Python code required. Guides the user through a structured interview and generates a ready-to-deploy .md agent file following the OpenHands SDK specification.",
|
|
17
|
+
"category": "development",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"agent",
|
|
20
|
+
"sub-agent",
|
|
21
|
+
"file-based",
|
|
22
|
+
"markdown",
|
|
23
|
+
"no-code",
|
|
24
|
+
"create"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "add-skill",
|
|
29
|
+
"source": "./skills/add-skill",
|
|
30
|
+
"description": "Add (import) an OpenHands skill from a GitHub repository into the current workspace.",
|
|
31
|
+
"category": "productivity",
|
|
32
|
+
"keywords": [
|
|
33
|
+
"skill",
|
|
34
|
+
"import",
|
|
35
|
+
"github",
|
|
36
|
+
"sparse-checkout"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "agent-memory",
|
|
41
|
+
"source": "./skills/agent-memory",
|
|
42
|
+
"description": "Persist and retrieve repository-specific knowledge using AGENTS.md files. Use when you want to save important information about a codebase (build commands, code style, workflows) for future sessions.",
|
|
43
|
+
"category": "productivity",
|
|
44
|
+
"keywords": [
|
|
45
|
+
"memory",
|
|
46
|
+
"knowledge",
|
|
47
|
+
"persistence",
|
|
48
|
+
"agents"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "agent-sdk-builder",
|
|
53
|
+
"source": "./skills/agent-sdk-builder",
|
|
54
|
+
"description": "Guided workflow for building custom AI agents using the OpenHands Software Agent SDK. Use when you want to create a new agent through an interactive interview process that gathers requirements and generates implementation plans.",
|
|
55
|
+
"category": "development",
|
|
56
|
+
"keywords": [
|
|
57
|
+
"agent",
|
|
58
|
+
"sdk",
|
|
59
|
+
"builder",
|
|
60
|
+
"openhands"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "code-simplifier",
|
|
65
|
+
"source": "./skills/code-simplifier",
|
|
66
|
+
"description": "Simplifies and refines code across three dimensions - code reuse, code quality, and efficiency - while preserving all functionality. Analyzes recently modified code and provides actionable improvement suggestions.",
|
|
67
|
+
"category": "development",
|
|
68
|
+
"keywords": [
|
|
69
|
+
"simplify",
|
|
70
|
+
"refine",
|
|
71
|
+
"cleanup",
|
|
72
|
+
"code-quality",
|
|
73
|
+
"reuse",
|
|
74
|
+
"efficiency",
|
|
75
|
+
"refactor"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "openhands-automation",
|
|
80
|
+
"source": "./skills/openhands-automation",
|
|
81
|
+
"description": "Create and manage OpenHands automations - scheduled tasks that run in sandboxes. Use the prompt preset to create automations from natural language, or manage existing automations.",
|
|
82
|
+
"category": "integration",
|
|
83
|
+
"keywords": [
|
|
84
|
+
"automation",
|
|
85
|
+
"cron",
|
|
86
|
+
"scheduled-task",
|
|
87
|
+
"sandbox",
|
|
88
|
+
"openhands"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "openhands-sdk",
|
|
93
|
+
"source": "./skills/openhands-sdk",
|
|
94
|
+
"description": "Reference skill for the OpenHands Software Agent SDK - build AI agents with custom tools, LLM configuration, conversations, sub-agent delegation, MCP integration, security, and persistence.",
|
|
95
|
+
"category": "development",
|
|
96
|
+
"keywords": [
|
|
97
|
+
"sdk",
|
|
98
|
+
"agent",
|
|
99
|
+
"openhands",
|
|
100
|
+
"tools",
|
|
101
|
+
"llm",
|
|
102
|
+
"conversation"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "azure-devops",
|
|
107
|
+
"source": "./skills/azure-devops",
|
|
108
|
+
"description": "Interact with Azure DevOps repositories, pull requests, and APIs using the AZURE_DEVOPS_TOKEN environment variable. Use when working with code hosted on Azure DevOps or managing Azure DevOps resources.",
|
|
109
|
+
"category": "integration",
|
|
110
|
+
"keywords": [
|
|
111
|
+
"azure",
|
|
112
|
+
"devops",
|
|
113
|
+
"git",
|
|
114
|
+
"pull-request"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "bitbucket",
|
|
119
|
+
"source": "./skills/bitbucket",
|
|
120
|
+
"description": "Interact with Bitbucket repositories and pull requests using the BITBUCKET_TOKEN environment variable. Use when working with code hosted on Bitbucket or managing Bitbucket resources via API.",
|
|
121
|
+
"category": "integration",
|
|
122
|
+
"keywords": [
|
|
123
|
+
"bitbucket",
|
|
124
|
+
"git",
|
|
125
|
+
"pull-request"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "city-weather",
|
|
130
|
+
"source": "./plugins/city-weather",
|
|
131
|
+
"description": "Get current weather, time, and precipitation forecast for any city using the free Open-Meteo API. Provides slash command /city-weather:now <city>.",
|
|
132
|
+
"category": "utilities",
|
|
133
|
+
"keywords": [
|
|
134
|
+
"weather",
|
|
135
|
+
"time",
|
|
136
|
+
"forecast",
|
|
137
|
+
"temperature",
|
|
138
|
+
"precipitation",
|
|
139
|
+
"sample"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "code-review",
|
|
144
|
+
"source": "./skills/code-review",
|
|
145
|
+
"description": "Rigorous code review focusing on data structures, simplicity, security, pragmatism, and risk/safety evaluation. Provides brutally honest, actionable feedback on pull requests or merge requests, including a risk assessment for every review. Use when reviewing code changes.",
|
|
146
|
+
"category": "code-quality",
|
|
147
|
+
"keywords": [
|
|
148
|
+
"code-review",
|
|
149
|
+
"quality",
|
|
150
|
+
"security",
|
|
151
|
+
"style",
|
|
152
|
+
"risk"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "datadog",
|
|
157
|
+
"source": "./skills/datadog",
|
|
158
|
+
"description": "Query and analyze Datadog logs, metrics, APM traces, and monitors using the Datadog API. Use when debugging production issues, monitoring application performance, or investigating alerts.",
|
|
159
|
+
"category": "monitoring",
|
|
160
|
+
"keywords": [
|
|
161
|
+
"datadog",
|
|
162
|
+
"monitoring",
|
|
163
|
+
"logs",
|
|
164
|
+
"metrics",
|
|
165
|
+
"apm"
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "deno",
|
|
170
|
+
"source": "./skills/deno",
|
|
171
|
+
"description": "Common project operations using Deno (tasks, run/test/lint/fmt, and dependency management).",
|
|
172
|
+
"category": "development",
|
|
173
|
+
"keywords": [
|
|
174
|
+
"deno",
|
|
175
|
+
"typescript",
|
|
176
|
+
"javascript",
|
|
177
|
+
"runtime"
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "discord",
|
|
182
|
+
"source": "./skills/discord",
|
|
183
|
+
"description": "Build and automate Discord integrations (bots, webhooks, slash commands, and REST API workflows). Use when the user mentions Discord, a Discord server/guild, channels, webhooks, bot tokens, slash commands/application commands, discord.js, or discord.py.",
|
|
184
|
+
"category": "integration",
|
|
185
|
+
"keywords": [
|
|
186
|
+
"discord",
|
|
187
|
+
"bot",
|
|
188
|
+
"webhook",
|
|
189
|
+
"automation"
|
|
190
|
+
]
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "docker",
|
|
194
|
+
"source": "./skills/docker",
|
|
195
|
+
"description": "Run Docker commands within a container environment, including starting the Docker daemon and managing containers. Use when building, running, or managing Docker containers and images.",
|
|
196
|
+
"category": "infrastructure",
|
|
197
|
+
"keywords": [
|
|
198
|
+
"docker",
|
|
199
|
+
"container",
|
|
200
|
+
"images"
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"name": "flarglebargle",
|
|
205
|
+
"source": "./skills/flarglebargle",
|
|
206
|
+
"description": "A test skill that responds to the magic word 'flarglebargle' with a compliment. Use for testing skill activation and trigger functionality.",
|
|
207
|
+
"category": "testing",
|
|
208
|
+
"keywords": [
|
|
209
|
+
"test",
|
|
210
|
+
"demo"
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "frontend-design",
|
|
215
|
+
"source": "./skills/frontend-design",
|
|
216
|
+
"description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications. Generates creative, polished code and UI design that avoids generic AI aesthetics.",
|
|
217
|
+
"category": "design",
|
|
218
|
+
"keywords": [
|
|
219
|
+
"frontend",
|
|
220
|
+
"design",
|
|
221
|
+
"ui",
|
|
222
|
+
"web",
|
|
223
|
+
"react",
|
|
224
|
+
"html",
|
|
225
|
+
"css"
|
|
226
|
+
]
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "github",
|
|
230
|
+
"source": "./skills/github",
|
|
231
|
+
"description": "Interact with GitHub repositories, pull requests, issues, and workflows using the GITHUB_TOKEN environment variable and GitHub CLI. Use when working with code hosted on GitHub or managing GitHub resources.",
|
|
232
|
+
"category": "integration",
|
|
233
|
+
"keywords": [
|
|
234
|
+
"github",
|
|
235
|
+
"git",
|
|
236
|
+
"pull-request",
|
|
237
|
+
"issues",
|
|
238
|
+
"workflows"
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "github-pr-review",
|
|
243
|
+
"source": "./skills/github-pr-review",
|
|
244
|
+
"description": "Post structured PR reviews to GitHub with inline comments/suggestions in a single API call.",
|
|
245
|
+
"category": "code-quality",
|
|
246
|
+
"keywords": [
|
|
247
|
+
"github",
|
|
248
|
+
"pull-request",
|
|
249
|
+
"review",
|
|
250
|
+
"code-review"
|
|
251
|
+
]
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"name": "github-repo-monitor",
|
|
255
|
+
"source": "./skills/github-repo-monitor",
|
|
256
|
+
"description": "Create a cron automation that polls a GitHub repository for issue and PR comments containing a configurable trigger phrase (@OpenHands by default). Starts an OpenHands conversation with full issue/PR context, posts acknowledgement comments with a conversation link, and summarises results back to the issue/PR when the agent finishes.",
|
|
257
|
+
"category": "productivity",
|
|
258
|
+
"keywords": [
|
|
259
|
+
"github",
|
|
260
|
+
"monitor",
|
|
261
|
+
"issues",
|
|
262
|
+
"pull-requests",
|
|
263
|
+
"trigger",
|
|
264
|
+
"cron",
|
|
265
|
+
"automation",
|
|
266
|
+
"integration"
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"name": "gitlab",
|
|
271
|
+
"source": "./skills/gitlab",
|
|
272
|
+
"description": "Interact with GitLab repositories, merge requests, and APIs using the GITLAB_TOKEN environment variable. Use when working with code hosted on GitLab or managing GitLab resources.",
|
|
273
|
+
"category": "integration",
|
|
274
|
+
"keywords": [
|
|
275
|
+
"gitlab",
|
|
276
|
+
"git",
|
|
277
|
+
"merge-request"
|
|
278
|
+
]
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"name": "jupyter",
|
|
282
|
+
"source": "./skills/jupyter",
|
|
283
|
+
"description": "Read, modify, execute, and convert Jupyter notebooks programmatically. Use when working with .ipynb files for data science workflows, including editing cells, clearing outputs, or converting to other formats.",
|
|
284
|
+
"category": "data-science",
|
|
285
|
+
"keywords": [
|
|
286
|
+
"jupyter",
|
|
287
|
+
"notebook",
|
|
288
|
+
"ipynb",
|
|
289
|
+
"data-science"
|
|
290
|
+
]
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "kubernetes",
|
|
294
|
+
"source": "./skills/kubernetes",
|
|
295
|
+
"description": "Set up and manage local Kubernetes clusters using KIND (Kubernetes IN Docker). Use when testing Kubernetes applications locally or developing cloud-native workloads.",
|
|
296
|
+
"category": "infrastructure",
|
|
297
|
+
"keywords": [
|
|
298
|
+
"kubernetes",
|
|
299
|
+
"k8s",
|
|
300
|
+
"kind",
|
|
301
|
+
"cloud-native"
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"name": "learn-from-code-review",
|
|
306
|
+
"source": "./skills/learn-from-code-review",
|
|
307
|
+
"description": "Distill code review feedback from GitHub PRs into reusable skills and guidelines. Use when users ask to learn from code reviews, extract review patterns, or generate coding standards from historical PR feedback.",
|
|
308
|
+
"category": "code-quality",
|
|
309
|
+
"keywords": [
|
|
310
|
+
"code-review",
|
|
311
|
+
"learning",
|
|
312
|
+
"skills",
|
|
313
|
+
"guidelines",
|
|
314
|
+
"pr-feedback"
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"name": "linear",
|
|
319
|
+
"source": "./skills/linear",
|
|
320
|
+
"description": "Interact with Linear project management - query issues, update status, create tickets using the Linear GraphQL API.",
|
|
321
|
+
"category": "integration",
|
|
322
|
+
"keywords": [
|
|
323
|
+
"linear",
|
|
324
|
+
"ticket",
|
|
325
|
+
"issue",
|
|
326
|
+
"project-management",
|
|
327
|
+
"graphql"
|
|
328
|
+
]
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"name": "magic-test",
|
|
332
|
+
"source": "./plugins/magic-test",
|
|
333
|
+
"description": "A simple test plugin for verifying plugin loading. Triggers on magic words (alakazam, abracadabra) and returns a specific phrase to confirm plugins are working.",
|
|
334
|
+
"category": "testing",
|
|
335
|
+
"keywords": [
|
|
336
|
+
"test",
|
|
337
|
+
"magic",
|
|
338
|
+
"plugin",
|
|
339
|
+
"verification",
|
|
340
|
+
"sample"
|
|
341
|
+
]
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "notion",
|
|
345
|
+
"source": "./skills/notion",
|
|
346
|
+
"description": "Create, search, and update Notion pages/databases using the Notion API. Use for documenting work, generating runbooks, and automating knowledge base updates.",
|
|
347
|
+
"category": "productivity",
|
|
348
|
+
"keywords": [
|
|
349
|
+
"notion",
|
|
350
|
+
"documentation",
|
|
351
|
+
"knowledge-base"
|
|
352
|
+
]
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "npm",
|
|
356
|
+
"source": "./skills/npm",
|
|
357
|
+
"description": "Handle npm package installation in non-interactive environments by piping confirmations. Use when installing Node.js packages that require user confirmation prompts.",
|
|
358
|
+
"category": "development",
|
|
359
|
+
"keywords": [
|
|
360
|
+
"npm",
|
|
361
|
+
"nodejs",
|
|
362
|
+
"packages"
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "onboarding",
|
|
367
|
+
"source": "./plugins/onboarding",
|
|
368
|
+
"description": "Assess repository agent-readiness across five pillars, propose high-impact fixes, and generate repo-specific AGENTS.md files.",
|
|
369
|
+
"category": "productivity",
|
|
370
|
+
"keywords": [
|
|
371
|
+
"onboarding",
|
|
372
|
+
"readiness",
|
|
373
|
+
"agents-md",
|
|
374
|
+
"agent-readiness",
|
|
375
|
+
"assessment"
|
|
376
|
+
]
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "openhands",
|
|
380
|
+
"source": "./plugins/openhands",
|
|
381
|
+
"description": "Unified OpenHands plugin \u2014 bundles Cloud CLI, REST API (openhands-api), and Automations (openhands-automation) into a single plugin.",
|
|
382
|
+
"category": "openhands",
|
|
383
|
+
"keywords": [
|
|
384
|
+
"openhands",
|
|
385
|
+
"cloud",
|
|
386
|
+
"api",
|
|
387
|
+
"automation",
|
|
388
|
+
"cli"
|
|
389
|
+
]
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"name": "openhands-api",
|
|
393
|
+
"source": "./skills/openhands-api",
|
|
394
|
+
"description": "Use the OpenHands Cloud REST API (V1) to create and manage app conversations, including multi-conversation delegation workflows, and to access sandbox agent-server endpoints. Includes minimal Python and TypeScript clients under scripts/.",
|
|
395
|
+
"category": "development",
|
|
396
|
+
"keywords": [
|
|
397
|
+
"openhands",
|
|
398
|
+
"api",
|
|
399
|
+
"cloud",
|
|
400
|
+
"automation",
|
|
401
|
+
"delegation",
|
|
402
|
+
"agent-server",
|
|
403
|
+
"sandbox",
|
|
404
|
+
"conversations"
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"name": "pdflatex",
|
|
409
|
+
"source": "./skills/pdflatex",
|
|
410
|
+
"description": "Install and use pdflatex to compile LaTeX documents into PDFs on Linux. Use when generating academic papers, research publications, or any documents written in LaTeX.",
|
|
411
|
+
"category": "documentation",
|
|
412
|
+
"keywords": [
|
|
413
|
+
"latex",
|
|
414
|
+
"pdf",
|
|
415
|
+
"academic",
|
|
416
|
+
"documents"
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"name": "pr-review",
|
|
421
|
+
"source": "./plugins/pr-review",
|
|
422
|
+
"description": "Automated PR code review \u2014 analyzes diffs and posts inline review comments via the GitHub API.",
|
|
423
|
+
"category": "code-quality",
|
|
424
|
+
"keywords": [
|
|
425
|
+
"pr-review",
|
|
426
|
+
"code-review",
|
|
427
|
+
"github",
|
|
428
|
+
"automation"
|
|
429
|
+
]
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"name": "qa-changes",
|
|
433
|
+
"source": "./plugins/qa-changes",
|
|
434
|
+
"description": "Validate pull request changes by actually running the code \u2014 setting up the environment, exercising changed behavior, and posting a structured QA report.",
|
|
435
|
+
"category": "quality-assurance",
|
|
436
|
+
"keywords": [
|
|
437
|
+
"qa",
|
|
438
|
+
"testing",
|
|
439
|
+
"pull-request",
|
|
440
|
+
"validation",
|
|
441
|
+
"automation"
|
|
442
|
+
]
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"name": "prd",
|
|
446
|
+
"source": "./skills/prd",
|
|
447
|
+
"description": "Generate a Product Requirements Document (PRD) for a new feature through an interactive clarifying-question workflow. Use when planning a feature, starting a new project, or when asked to create a PRD.",
|
|
448
|
+
"category": "productivity",
|
|
449
|
+
"keywords": [
|
|
450
|
+
"prd",
|
|
451
|
+
"requirements",
|
|
452
|
+
"planning",
|
|
453
|
+
"product",
|
|
454
|
+
"specification"
|
|
455
|
+
]
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"name": "release-notes",
|
|
459
|
+
"source": "./plugins/release-notes",
|
|
460
|
+
"description": "Generate consistent, well-structured release notes from git history. Produces categorized changelog with breaking changes, features, fixes, and contributor attribution.",
|
|
461
|
+
"category": "productivity",
|
|
462
|
+
"keywords": [
|
|
463
|
+
"release-notes",
|
|
464
|
+
"changelog",
|
|
465
|
+
"git",
|
|
466
|
+
"semver"
|
|
467
|
+
]
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"name": "security",
|
|
471
|
+
"source": "./skills/security",
|
|
472
|
+
"description": "Security best practices for secure coding, authentication, authorization, and data protection. Use when developing features that handle sensitive data, user authentication, or require security review.",
|
|
473
|
+
"category": "security",
|
|
474
|
+
"keywords": [
|
|
475
|
+
"security",
|
|
476
|
+
"authentication",
|
|
477
|
+
"authorization",
|
|
478
|
+
"encryption"
|
|
479
|
+
]
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"name": "skill-creator",
|
|
483
|
+
"source": "./skills/skill-creator",
|
|
484
|
+
"description": "Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.",
|
|
485
|
+
"category": "development",
|
|
486
|
+
"keywords": [
|
|
487
|
+
"skill",
|
|
488
|
+
"plugin",
|
|
489
|
+
"create"
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"name": "slack-channel-monitor",
|
|
494
|
+
"source": "./skills/slack-channel-monitor",
|
|
495
|
+
"description": "Create a cron automation that polls up to 10 Slack channels every minute and starts an OpenHands conversation when a configurable trigger phrase is detected. Forwards thread replies to running conversations and posts summaries back to Slack when the agent finishes.",
|
|
496
|
+
"category": "productivity",
|
|
497
|
+
"keywords": [
|
|
498
|
+
"slack",
|
|
499
|
+
"monitor",
|
|
500
|
+
"channel",
|
|
501
|
+
"trigger",
|
|
502
|
+
"cron",
|
|
503
|
+
"automation",
|
|
504
|
+
"integration"
|
|
505
|
+
]
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"name": "ssh",
|
|
509
|
+
"source": "./skills/ssh",
|
|
510
|
+
"description": "Establish and manage SSH connections to remote machines, including key generation, configuration, and file transfers. Use when connecting to remote servers, executing remote commands, or transferring files via SCP.",
|
|
511
|
+
"category": "infrastructure",
|
|
512
|
+
"keywords": [
|
|
513
|
+
"ssh",
|
|
514
|
+
"remote",
|
|
515
|
+
"scp",
|
|
516
|
+
"server"
|
|
517
|
+
]
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"name": "swift-linux",
|
|
521
|
+
"source": "./skills/swift-linux",
|
|
522
|
+
"description": "Install and configure Swift programming language on Debian Linux for server-side development. Use when building Swift applications on Linux or setting up a Swift development environment.",
|
|
523
|
+
"category": "development",
|
|
524
|
+
"keywords": [
|
|
525
|
+
"swift",
|
|
526
|
+
"linux",
|
|
527
|
+
"server-side"
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"name": "theme-factory",
|
|
532
|
+
"source": "./skills/theme-factory",
|
|
533
|
+
"description": "Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.",
|
|
534
|
+
"category": "design",
|
|
535
|
+
"keywords": [
|
|
536
|
+
"theme",
|
|
537
|
+
"styling",
|
|
538
|
+
"design",
|
|
539
|
+
"slides",
|
|
540
|
+
"documents"
|
|
541
|
+
]
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"name": "uv",
|
|
545
|
+
"source": "./skills/uv",
|
|
546
|
+
"description": "Common project, dependency, and environment operations using uv.",
|
|
547
|
+
"category": "development",
|
|
548
|
+
"keywords": [
|
|
549
|
+
"uv",
|
|
550
|
+
"python",
|
|
551
|
+
"dependencies",
|
|
552
|
+
"venv"
|
|
553
|
+
]
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"name": "vercel",
|
|
557
|
+
"source": "./skills/vercel",
|
|
558
|
+
"description": "Deploy and manage applications on Vercel, including preview deployments and deployment protection.",
|
|
559
|
+
"category": "integration",
|
|
560
|
+
"keywords": [
|
|
561
|
+
"vercel",
|
|
562
|
+
"deployment",
|
|
563
|
+
"preview",
|
|
564
|
+
"hosting"
|
|
565
|
+
]
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"name": "vulnerability-remediation",
|
|
569
|
+
"source": "./plugins/vulnerability-remediation",
|
|
570
|
+
"description": "Automated security vulnerability scanning and AI-powered remediation. Scans repositories, skips when no issues found, and creates PRs with fixes.",
|
|
571
|
+
"category": "security",
|
|
572
|
+
"keywords": [
|
|
573
|
+
"security",
|
|
574
|
+
"vulnerability",
|
|
575
|
+
"remediation",
|
|
576
|
+
"scanning",
|
|
577
|
+
"automation"
|
|
578
|
+
]
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "iterate",
|
|
582
|
+
"source": "./skills/iterate",
|
|
583
|
+
"description": "Iterate on a GitHub pull request \u2014 drive it through CI, code review, and QA until merge-ready. Monitors state, fixes failures, addresses review feedback, retries flaky checks, and pushes fixes in one continuous loop.",
|
|
584
|
+
"category": "productivity",
|
|
585
|
+
"keywords": [
|
|
586
|
+
"github",
|
|
587
|
+
"ci",
|
|
588
|
+
"review",
|
|
589
|
+
"qa",
|
|
590
|
+
"pull-request",
|
|
591
|
+
"iterate"
|
|
592
|
+
]
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"name": "evidence-based-citations",
|
|
596
|
+
"source": "./skills/evidence-based-citations",
|
|
597
|
+
"description": "Back factual claims and field values with official, verifiable sources. Use when the user asks to fill fields, answer questions, or make claims that must be supported by an exact quote and an official link.",
|
|
598
|
+
"category": "productivity",
|
|
599
|
+
"keywords": [
|
|
600
|
+
"evidence",
|
|
601
|
+
"citations",
|
|
602
|
+
"sources",
|
|
603
|
+
"verification",
|
|
604
|
+
"documentation",
|
|
605
|
+
"official"
|
|
606
|
+
]
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"name": "github-pr-reviewer",
|
|
610
|
+
"source": "./skills/github-pr-reviewer",
|
|
611
|
+
"description": "Create an automation that reviews GitHub pull requests when they are opened or updated. Inspects the diff, changed files, tests, and existing discussion via GitHub MCP, then posts a concise review highlighting risks, security issues, missing tests, and next steps.",
|
|
612
|
+
"category": "productivity",
|
|
613
|
+
"keywords": [
|
|
614
|
+
"github",
|
|
615
|
+
"pull-request",
|
|
616
|
+
"review",
|
|
617
|
+
"code-review",
|
|
618
|
+
"automation",
|
|
619
|
+
"integration"
|
|
620
|
+
]
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"name": "incident-retrospective",
|
|
624
|
+
"source": "./skills/incident-retrospective",
|
|
625
|
+
"description": "Create an automation that drafts incident retrospectives by gathering incident-channel messages from Slack, collecting linked tickets from Linear, and publishing a retrospective draft to Notion with timeline, impact summary, root-cause hypotheses, and action items.",
|
|
626
|
+
"category": "productivity",
|
|
627
|
+
"keywords": [
|
|
628
|
+
"incident",
|
|
629
|
+
"retrospective",
|
|
630
|
+
"postmortem",
|
|
631
|
+
"slack",
|
|
632
|
+
"linear",
|
|
633
|
+
"notion",
|
|
634
|
+
"automation"
|
|
635
|
+
]
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"name": "linear-triage",
|
|
639
|
+
"source": "./skills/linear-triage",
|
|
640
|
+
"description": "Create an automation that triages new Linear issues by inspecting title, description, team, and recent related issues. Suggests labels, priority, likely owner, and potential duplicates, then posts a clarifying comment.",
|
|
641
|
+
"category": "productivity",
|
|
642
|
+
"keywords": [
|
|
643
|
+
"linear",
|
|
644
|
+
"triage",
|
|
645
|
+
"issues",
|
|
646
|
+
"labels",
|
|
647
|
+
"priority",
|
|
648
|
+
"automation",
|
|
649
|
+
"integration"
|
|
650
|
+
]
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"name": "research-brief",
|
|
654
|
+
"source": "./skills/research-brief",
|
|
655
|
+
"description": "Create a recurring automation that researches a topic using Tavily web search and publishes a structured brief to Notion with executive summary, key findings, implications, and source citations.",
|
|
656
|
+
"category": "productivity",
|
|
657
|
+
"keywords": [
|
|
658
|
+
"research",
|
|
659
|
+
"brief",
|
|
660
|
+
"tavily",
|
|
661
|
+
"notion",
|
|
662
|
+
"web-search",
|
|
663
|
+
"automation"
|
|
664
|
+
]
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"name": "slack-standup-digest",
|
|
668
|
+
"source": "./skills/slack-standup-digest",
|
|
669
|
+
"description": "Create an automation that generates an async standup digest from Slack. Searches selected channels for messages since the previous workday, groups updates by project, highlights blockers and decisions, and posts a summary to a target channel.",
|
|
670
|
+
"category": "productivity",
|
|
671
|
+
"keywords": [
|
|
672
|
+
"slack",
|
|
673
|
+
"standup",
|
|
674
|
+
"digest",
|
|
675
|
+
"summary",
|
|
676
|
+
"daily",
|
|
677
|
+
"cron",
|
|
678
|
+
"automation"
|
|
679
|
+
]
|
|
680
|
+
}
|
|
681
|
+
]
|
|
682
|
+
}
|