@elizaos/skills 2.0.0-alpha.3
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/README.md +126 -0
- package/package.json +53 -0
- package/skills/1password/SKILL.md +70 -0
- package/skills/1password/references/cli-examples.md +29 -0
- package/skills/1password/references/get-started.md +17 -0
- package/skills/apple-notes/SKILL.md +77 -0
- package/skills/apple-reminders/SKILL.md +96 -0
- package/skills/bear-notes/SKILL.md +107 -0
- package/skills/bird/SKILL.md +224 -0
- package/skills/blogwatcher/SKILL.md +69 -0
- package/skills/blucli/SKILL.md +47 -0
- package/skills/bluebubbles/SKILL.md +131 -0
- package/skills/camsnap/SKILL.md +45 -0
- package/skills/canvas/SKILL.md +203 -0
- package/skills/clawhub/SKILL.md +77 -0
- package/skills/coding-agent/SKILL.md +284 -0
- package/skills/discord/SKILL.md +578 -0
- package/skills/eightctl/SKILL.md +50 -0
- package/skills/food-order/SKILL.md +48 -0
- package/skills/gemini/SKILL.md +43 -0
- package/skills/gifgrep/SKILL.md +79 -0
- package/skills/github/SKILL.md +77 -0
- package/skills/gog/SKILL.md +116 -0
- package/skills/goplaces/SKILL.md +52 -0
- package/skills/healthcheck/SKILL.md +245 -0
- package/skills/himalaya/SKILL.md +257 -0
- package/skills/himalaya/references/configuration.md +184 -0
- package/skills/himalaya/references/message-composition.md +199 -0
- package/skills/imsg/SKILL.md +74 -0
- package/skills/local-places/SERVER_README.md +101 -0
- package/skills/local-places/SKILL.md +102 -0
- package/skills/local-places/pyproject.toml +21 -0
- package/skills/local-places/src/local_places/__init__.py +2 -0
- package/skills/local-places/src/local_places/google_places.py +314 -0
- package/skills/local-places/src/local_places/main.py +65 -0
- package/skills/local-places/src/local_places/schemas.py +107 -0
- package/skills/mcporter/SKILL.md +61 -0
- package/skills/model-usage/SKILL.md +69 -0
- package/skills/model-usage/references/codexbar-cli.md +33 -0
- package/skills/model-usage/scripts/model_usage.py +310 -0
- package/skills/nano-banana-pro/SKILL.md +58 -0
- package/skills/nano-banana-pro/scripts/generate_image.py +184 -0
- package/skills/nano-pdf/SKILL.md +38 -0
- package/skills/notion/SKILL.md +172 -0
- package/skills/obsidian/SKILL.md +81 -0
- package/skills/openai-image-gen/SKILL.md +89 -0
- package/skills/openai-image-gen/scripts/gen.py +240 -0
- package/skills/openai-whisper/SKILL.md +38 -0
- package/skills/openai-whisper-api/SKILL.md +52 -0
- package/skills/openai-whisper-api/scripts/transcribe.sh +85 -0
- package/skills/openhue/SKILL.md +51 -0
- package/skills/oracle/SKILL.md +125 -0
- package/skills/ordercli/SKILL.md +78 -0
- package/skills/peekaboo/SKILL.md +190 -0
- package/skills/sag/SKILL.md +87 -0
- package/skills/security-ask-questions-if-underspecified/.claude-plugin/plugin.json +10 -0
- package/skills/security-ask-questions-if-underspecified/README.md +24 -0
- package/skills/security-ask-questions-if-underspecified/skills/ask-questions-if-underspecified/SKILL.md +85 -0
- package/skills/security-audit-context-building/.claude-plugin/plugin.json +10 -0
- package/skills/security-audit-context-building/README.md +58 -0
- package/skills/security-audit-context-building/commands/audit-context.md +21 -0
- package/skills/security-audit-context-building/skills/audit-context-building/SKILL.md +297 -0
- package/skills/security-audit-context-building/skills/audit-context-building/resources/COMPLETENESS_CHECKLIST.md +47 -0
- package/skills/security-audit-context-building/skills/audit-context-building/resources/FUNCTION_MICRO_ANALYSIS_EXAMPLE.md +355 -0
- package/skills/security-audit-context-building/skills/audit-context-building/resources/OUTPUT_REQUIREMENTS.md +71 -0
- package/skills/security-building-secure-contracts/.claude-plugin/plugin.json +10 -0
- package/skills/security-building-secure-contracts/README.md +241 -0
- package/skills/security-building-secure-contracts/skills/algorand-vulnerability-scanner/SKILL.md +284 -0
- package/skills/security-building-secure-contracts/skills/algorand-vulnerability-scanner/resources/VULNERABILITY_PATTERNS.md +405 -0
- package/skills/security-building-secure-contracts/skills/audit-prep-assistant/SKILL.md +409 -0
- package/skills/security-building-secure-contracts/skills/cairo-vulnerability-scanner/SKILL.md +329 -0
- package/skills/security-building-secure-contracts/skills/cairo-vulnerability-scanner/resources/VULNERABILITY_PATTERNS.md +722 -0
- package/skills/security-building-secure-contracts/skills/code-maturity-assessor/SKILL.md +218 -0
- package/skills/security-building-secure-contracts/skills/code-maturity-assessor/resources/ASSESSMENT_CRITERIA.md +355 -0
- package/skills/security-building-secure-contracts/skills/code-maturity-assessor/resources/EXAMPLE_REPORT.md +248 -0
- package/skills/security-building-secure-contracts/skills/code-maturity-assessor/resources/REPORT_FORMAT.md +33 -0
- package/skills/security-building-secure-contracts/skills/cosmos-vulnerability-scanner/SKILL.md +334 -0
- package/skills/security-building-secure-contracts/skills/cosmos-vulnerability-scanner/resources/VULNERABILITY_PATTERNS.md +740 -0
- package/skills/security-building-secure-contracts/skills/guidelines-advisor/SKILL.md +252 -0
- package/skills/security-building-secure-contracts/skills/guidelines-advisor/resources/ASSESSMENT_AREAS.md +329 -0
- package/skills/security-building-secure-contracts/skills/guidelines-advisor/resources/DELIVERABLES.md +118 -0
- package/skills/security-building-secure-contracts/skills/guidelines-advisor/resources/EXAMPLE_REPORT.md +298 -0
- package/skills/security-building-secure-contracts/skills/secure-workflow-guide/SKILL.md +161 -0
- package/skills/security-building-secure-contracts/skills/secure-workflow-guide/resources/EXAMPLE_REPORT.md +279 -0
- package/skills/security-building-secure-contracts/skills/secure-workflow-guide/resources/WORKFLOW_STEPS.md +132 -0
- package/skills/security-building-secure-contracts/skills/solana-vulnerability-scanner/SKILL.md +389 -0
- package/skills/security-building-secure-contracts/skills/solana-vulnerability-scanner/resources/VULNERABILITY_PATTERNS.md +669 -0
- package/skills/security-building-secure-contracts/skills/substrate-vulnerability-scanner/SKILL.md +298 -0
- package/skills/security-building-secure-contracts/skills/substrate-vulnerability-scanner/resources/VULNERABILITY_PATTERNS.md +791 -0
- package/skills/security-building-secure-contracts/skills/token-integration-analyzer/SKILL.md +362 -0
- package/skills/security-building-secure-contracts/skills/token-integration-analyzer/resources/ASSESSMENT_CATEGORIES.md +571 -0
- package/skills/security-building-secure-contracts/skills/token-integration-analyzer/resources/REPORT_TEMPLATES.md +141 -0
- package/skills/security-building-secure-contracts/skills/ton-vulnerability-scanner/SKILL.md +388 -0
- package/skills/security-building-secure-contracts/skills/ton-vulnerability-scanner/resources/VULNERABILITY_PATTERNS.md +595 -0
- package/skills/security-burpsuite-project-parser/.claude-plugin/plugin.json +10 -0
- package/skills/security-burpsuite-project-parser/README.md +103 -0
- package/skills/security-burpsuite-project-parser/commands/burp-search.md +18 -0
- package/skills/security-burpsuite-project-parser/skills/SKILL.md +358 -0
- package/skills/security-burpsuite-project-parser/skills/scripts/burp-search.sh +99 -0
- package/skills/security-claude-in-chrome-troubleshooting/.claude-plugin/plugin.json +8 -0
- package/skills/security-claude-in-chrome-troubleshooting/README.md +31 -0
- package/skills/security-claude-in-chrome-troubleshooting/skills/claude-in-chrome-troubleshooting/SKILL.md +251 -0
- package/skills/security-constant-time-analysis/.claude-plugin/plugin.json +9 -0
- package/skills/security-constant-time-analysis/README.md +381 -0
- package/skills/security-constant-time-analysis/commands/ct-check.md +20 -0
- package/skills/security-constant-time-analysis/ct_analyzer/__init__.py +49 -0
- package/skills/security-constant-time-analysis/ct_analyzer/analyzer.py +1284 -0
- package/skills/security-constant-time-analysis/ct_analyzer/script_analyzers.py +3081 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/__init__.py +1 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_analyzer.py +1397 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/bn_excerpt.js +205 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/decompose_constant_time.c +181 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/decompose_vulnerable.c +74 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/decompose_vulnerable.go +78 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/decompose_vulnerable.rs +92 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/vulnerable.cs +174 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/vulnerable.java +161 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/vulnerable.kt +181 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/vulnerable.php +140 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/vulnerable.py +252 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/vulnerable.rb +188 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/vulnerable.swift +199 -0
- package/skills/security-constant-time-analysis/ct_analyzer/tests/test_samples/vulnerable.ts +154 -0
- package/skills/security-constant-time-analysis/pyproject.toml +52 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/README.md +90 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/SKILL.md +219 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/references/compiled.md +129 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/references/javascript.md +136 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/references/kotlin.md +252 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/references/php.md +172 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/references/python.md +179 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/references/ruby.md +198 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/references/swift.md +288 -0
- package/skills/security-constant-time-analysis/skills/constant-time-analysis/references/vm-compiled.md +354 -0
- package/skills/security-constant-time-analysis/uv.lock +8 -0
- package/skills/security-culture-index/.claude-plugin/plugin.json +8 -0
- package/skills/security-culture-index/README.md +79 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/SKILL.md +293 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/references/anti-patterns.md +255 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/references/conversation-starters.md +408 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/references/interview-trait-signals.md +253 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/references/motivators.md +158 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/references/patterns-archetypes.md +147 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/references/primary-traits.md +307 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/references/secondary-traits.md +228 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/references/team-composition.md +148 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/scripts/check_deps.py +108 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/scripts/culture_index/__init__.py +20 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/scripts/culture_index/constants.py +122 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/scripts/culture_index/extract.py +187 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/scripts/culture_index/models.py +16 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/scripts/culture_index/opencv_extractor.py +520 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/scripts/extract_pdf.py +237 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/scripts/pyproject.toml +18 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/templates/burnout-report.md +113 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/templates/comparison-report.md +103 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/templates/hiring-profile.md +127 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/templates/individual-report.md +85 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/templates/predicted-profile.md +165 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/templates/team-report.md +109 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/analyze-team.md +188 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/coach-manager.md +267 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/compare-profiles.md +188 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/define-hiring-profile.md +220 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/detect-burnout.md +206 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/extract-from-pdf.md +121 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/interpret-individual.md +183 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/interview-debrief.md +234 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/mediate-conflict.md +306 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/plan-onboarding.md +322 -0
- package/skills/security-culture-index/skills/interpreting-culture-index/workflows/predict-from-interview.md +250 -0
- package/skills/security-differential-review/.claude-plugin/plugin.json +10 -0
- package/skills/security-differential-review/README.md +109 -0
- package/skills/security-differential-review/commands/diff-review.md +21 -0
- package/skills/security-differential-review/skills/differential-review/SKILL.md +220 -0
- package/skills/security-differential-review/skills/differential-review/adversarial.md +203 -0
- package/skills/security-differential-review/skills/differential-review/methodology.md +234 -0
- package/skills/security-differential-review/skills/differential-review/patterns.md +300 -0
- package/skills/security-differential-review/skills/differential-review/reporting.md +369 -0
- package/skills/security-dwarf-expert/.claude-plugin/plugin.json +10 -0
- package/skills/security-dwarf-expert/README.md +38 -0
- package/skills/security-dwarf-expert/skills/dwarf-expert/SKILL.md +93 -0
- package/skills/security-dwarf-expert/skills/dwarf-expert/reference/coding.md +31 -0
- package/skills/security-dwarf-expert/skills/dwarf-expert/reference/dwarfdump.md +50 -0
- package/skills/security-dwarf-expert/skills/dwarf-expert/reference/readelf.md +8 -0
- package/skills/security-entry-point-analyzer/.claude-plugin/plugin.json +10 -0
- package/skills/security-entry-point-analyzer/README.md +74 -0
- package/skills/security-entry-point-analyzer/commands/entry-points.md +18 -0
- package/skills/security-entry-point-analyzer/skills/entry-point-analyzer/SKILL.md +251 -0
- package/skills/security-entry-point-analyzer/skills/entry-point-analyzer/references/cosmwasm.md +182 -0
- package/skills/security-entry-point-analyzer/skills/entry-point-analyzer/references/move-aptos.md +107 -0
- package/skills/security-entry-point-analyzer/skills/entry-point-analyzer/references/move-sui.md +87 -0
- package/skills/security-entry-point-analyzer/skills/entry-point-analyzer/references/solana.md +155 -0
- package/skills/security-entry-point-analyzer/skills/entry-point-analyzer/references/solidity.md +135 -0
- package/skills/security-entry-point-analyzer/skills/entry-point-analyzer/references/ton.md +185 -0
- package/skills/security-entry-point-analyzer/skills/entry-point-analyzer/references/vyper.md +141 -0
- package/skills/security-firebase-apk-scanner/.claude-plugin/plugin.json +10 -0
- package/skills/security-firebase-apk-scanner/README.md +85 -0
- package/skills/security-firebase-apk-scanner/commands/scan-apk.md +18 -0
- package/skills/security-firebase-apk-scanner/scanner.sh +1408 -0
- package/skills/security-firebase-apk-scanner/skills/firebase-apk-scanner/SKILL.md +197 -0
- package/skills/security-firebase-apk-scanner/skills/firebase-apk-scanner/references/vulnerabilities.md +803 -0
- package/skills/security-fix-review/.claude-plugin/plugin.json +13 -0
- package/skills/security-fix-review/README.md +118 -0
- package/skills/security-fix-review/commands/fix-review.md +24 -0
- package/skills/security-fix-review/skills/fix-review/SKILL.md +264 -0
- package/skills/security-fix-review/skills/fix-review/references/bug-detection.md +408 -0
- package/skills/security-fix-review/skills/fix-review/references/finding-matching.md +298 -0
- package/skills/security-fix-review/skills/fix-review/references/report-parsing.md +398 -0
- package/skills/security-insecure-defaults/.claude-plugin/plugin.json +10 -0
- package/skills/security-insecure-defaults/README.md +45 -0
- package/skills/security-insecure-defaults/skills/insecure-defaults/SKILL.md +117 -0
- package/skills/security-insecure-defaults/skills/insecure-defaults/references/examples.md +409 -0
- package/skills/security-modern-python/.claude-plugin/plugin.json +10 -0
- package/skills/security-modern-python/README.md +58 -0
- package/skills/security-modern-python/hooks/hooks.json +16 -0
- package/skills/security-modern-python/hooks/intercept-legacy-python.bats +388 -0
- package/skills/security-modern-python/hooks/intercept-legacy-python.sh +109 -0
- package/skills/security-modern-python/hooks/test_helper.bash +75 -0
- package/skills/security-modern-python/skills/modern-python/SKILL.md +333 -0
- package/skills/security-modern-python/skills/modern-python/references/dependabot.md +43 -0
- package/skills/security-modern-python/skills/modern-python/references/migration-checklist.md +141 -0
- package/skills/security-modern-python/skills/modern-python/references/pep723-scripts.md +259 -0
- package/skills/security-modern-python/skills/modern-python/references/prek.md +211 -0
- package/skills/security-modern-python/skills/modern-python/references/pyproject.md +254 -0
- package/skills/security-modern-python/skills/modern-python/references/ruff-config.md +240 -0
- package/skills/security-modern-python/skills/modern-python/references/security-setup.md +255 -0
- package/skills/security-modern-python/skills/modern-python/references/testing.md +284 -0
- package/skills/security-modern-python/skills/modern-python/references/uv-commands.md +200 -0
- package/skills/security-modern-python/skills/modern-python/templates/dependabot.yml +36 -0
- package/skills/security-modern-python/skills/modern-python/templates/pre-commit-config.yaml +66 -0
- package/skills/security-property-based-testing/.claude-plugin/plugin.json +9 -0
- package/skills/security-property-based-testing/README.md +47 -0
- package/skills/security-property-based-testing/skills/property-based-testing/README.md +88 -0
- package/skills/security-property-based-testing/skills/property-based-testing/SKILL.md +109 -0
- package/skills/security-property-based-testing/skills/property-based-testing/references/design.md +191 -0
- package/skills/security-property-based-testing/skills/property-based-testing/references/generating.md +200 -0
- package/skills/security-property-based-testing/skills/property-based-testing/references/libraries.md +130 -0
- package/skills/security-property-based-testing/skills/property-based-testing/references/refactoring.md +181 -0
- package/skills/security-property-based-testing/skills/property-based-testing/references/reviewing.md +209 -0
- package/skills/security-property-based-testing/skills/property-based-testing/references/strategies.md +124 -0
- package/skills/semgrep-rule-creator/.claude-plugin/plugin.json +8 -0
- package/skills/semgrep-rule-creator/README.md +43 -0
- package/skills/semgrep-rule-creator/commands/semgrep-rule.md +26 -0
- package/skills/semgrep-rule-creator/skills/semgrep-rule-creator/SKILL.md +168 -0
- package/skills/semgrep-rule-creator/skills/semgrep-rule-creator/references/quick-reference.md +203 -0
- package/skills/semgrep-rule-creator/skills/semgrep-rule-creator/references/workflow.md +240 -0
- package/skills/semgrep-rule-variant-creator/.claude-plugin/plugin.json +9 -0
- package/skills/semgrep-rule-variant-creator/README.md +86 -0
- package/skills/semgrep-rule-variant-creator/skills/semgrep-rule-variant-creator/SKILL.md +205 -0
- package/skills/semgrep-rule-variant-creator/skills/semgrep-rule-variant-creator/references/applicability-analysis.md +250 -0
- package/skills/semgrep-rule-variant-creator/skills/semgrep-rule-variant-creator/references/language-syntax-guide.md +324 -0
- package/skills/semgrep-rule-variant-creator/skills/semgrep-rule-variant-creator/references/workflow.md +518 -0
- package/skills/session-logs/SKILL.md +115 -0
- package/skills/sharp-edges/.claude-plugin/plugin.json +10 -0
- package/skills/sharp-edges/README.md +48 -0
- package/skills/sharp-edges/skills/sharp-edges/SKILL.md +292 -0
- package/skills/sharp-edges/skills/sharp-edges/references/auth-patterns.md +252 -0
- package/skills/sharp-edges/skills/sharp-edges/references/case-studies.md +274 -0
- package/skills/sharp-edges/skills/sharp-edges/references/config-patterns.md +333 -0
- package/skills/sharp-edges/skills/sharp-edges/references/crypto-apis.md +190 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-c.md +205 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-csharp.md +285 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-go.md +270 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-java.md +263 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-javascript.md +269 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-kotlin.md +265 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-php.md +245 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-python.md +274 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-ruby.md +273 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-rust.md +272 -0
- package/skills/sharp-edges/skills/sharp-edges/references/lang-swift.md +287 -0
- package/skills/sharp-edges/skills/sharp-edges/references/language-specific.md +588 -0
- package/skills/sherpa-onnx-tts/SKILL.md +103 -0
- package/skills/sherpa-onnx-tts/bin/sherpa-onnx-tts +178 -0
- package/skills/skill-creator/SKILL.md +370 -0
- package/skills/skill-creator/license.txt +202 -0
- package/skills/skill-creator/scripts/init_skill.py +378 -0
- package/skills/skill-creator/scripts/package_skill.py +111 -0
- package/skills/skill-creator/scripts/quick_validate.py +101 -0
- package/skills/slack/SKILL.md +144 -0
- package/skills/songsee/SKILL.md +49 -0
- package/skills/sonoscli/SKILL.md +46 -0
- package/skills/spec-to-code-compliance/.claude-plugin/plugin.json +10 -0
- package/skills/spec-to-code-compliance/README.md +67 -0
- package/skills/spec-to-code-compliance/commands/spec-compliance.md +22 -0
- package/skills/spec-to-code-compliance/skills/spec-to-code-compliance/SKILL.md +349 -0
- package/skills/spec-to-code-compliance/skills/spec-to-code-compliance/resources/COMPLETENESS_CHECKLIST.md +69 -0
- package/skills/spec-to-code-compliance/skills/spec-to-code-compliance/resources/IR_EXAMPLES.md +417 -0
- package/skills/spec-to-code-compliance/skills/spec-to-code-compliance/resources/OUTPUT_REQUIREMENTS.md +105 -0
- package/skills/spotify-player/SKILL.md +64 -0
- package/skills/static-analysis/.claude-plugin/plugin.json +8 -0
- package/skills/static-analysis/README.md +59 -0
- package/skills/static-analysis/skills/codeql/SKILL.md +315 -0
- package/skills/static-analysis/skills/sarif-parsing/SKILL.md +479 -0
- package/skills/static-analysis/skills/sarif-parsing/resources/jq-queries.md +162 -0
- package/skills/static-analysis/skills/sarif-parsing/resources/sarif_helpers.py +331 -0
- package/skills/static-analysis/skills/semgrep/SKILL.md +337 -0
- package/skills/summarize/SKILL.md +87 -0
- package/skills/testing-handbook-skills/.claude-plugin/plugin.json +8 -0
- package/skills/testing-handbook-skills/README.md +241 -0
- package/skills/testing-handbook-skills/scripts/pyproject.toml +8 -0
- package/skills/testing-handbook-skills/scripts/validate-skills.py +657 -0
- package/skills/testing-handbook-skills/skills/address-sanitizer/SKILL.md +341 -0
- package/skills/testing-handbook-skills/skills/aflpp/SKILL.md +640 -0
- package/skills/testing-handbook-skills/skills/atheris/SKILL.md +515 -0
- package/skills/testing-handbook-skills/skills/cargo-fuzz/SKILL.md +454 -0
- package/skills/testing-handbook-skills/skills/codeql/SKILL.md +549 -0
- package/skills/testing-handbook-skills/skills/constant-time-testing/SKILL.md +507 -0
- package/skills/testing-handbook-skills/skills/coverage-analysis/SKILL.md +607 -0
- package/skills/testing-handbook-skills/skills/fuzzing-dictionary/SKILL.md +297 -0
- package/skills/testing-handbook-skills/skills/fuzzing-obstacles/SKILL.md +426 -0
- package/skills/testing-handbook-skills/skills/harness-writing/SKILL.md +614 -0
- package/skills/testing-handbook-skills/skills/libafl/SKILL.md +625 -0
- package/skills/testing-handbook-skills/skills/libfuzzer/SKILL.md +795 -0
- package/skills/testing-handbook-skills/skills/ossfuzz/SKILL.md +426 -0
- package/skills/testing-handbook-skills/skills/ruzzy/SKILL.md +443 -0
- package/skills/testing-handbook-skills/skills/semgrep/SKILL.md +601 -0
- package/skills/testing-handbook-skills/skills/testing-handbook-generator/SKILL.md +372 -0
- package/skills/testing-handbook-skills/skills/testing-handbook-generator/agent-prompt.md +280 -0
- package/skills/testing-handbook-skills/skills/testing-handbook-generator/discovery.md +452 -0
- package/skills/testing-handbook-skills/skills/testing-handbook-generator/templates/domain-skill.md +504 -0
- package/skills/testing-handbook-skills/skills/testing-handbook-generator/templates/fuzzer-skill.md +454 -0
- package/skills/testing-handbook-skills/skills/testing-handbook-generator/templates/technique-skill.md +527 -0
- package/skills/testing-handbook-skills/skills/testing-handbook-generator/templates/tool-skill.md +366 -0
- package/skills/testing-handbook-skills/skills/testing-handbook-generator/testing.md +482 -0
- package/skills/testing-handbook-skills/skills/wycheproof/SKILL.md +533 -0
- package/skills/things-mac/SKILL.md +86 -0
- package/skills/tmux/SKILL.md +135 -0
- package/skills/tmux/scripts/find-sessions.sh +112 -0
- package/skills/tmux/scripts/wait-for-text.sh +83 -0
- package/skills/trello/SKILL.md +95 -0
- package/skills/variant-analysis/.claude-plugin/plugin.json +8 -0
- package/skills/variant-analysis/README.md +41 -0
- package/skills/variant-analysis/commands/variants.md +23 -0
- package/skills/variant-analysis/skills/variant-analysis/METHODOLOGY.md +327 -0
- package/skills/variant-analysis/skills/variant-analysis/SKILL.md +142 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/codeql/cpp.ql +119 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/codeql/go.ql +69 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/codeql/java.ql +71 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/codeql/javascript.ql +63 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/codeql/python.ql +80 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/semgrep/cpp.yaml +98 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/semgrep/go.yaml +63 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/semgrep/java.yaml +61 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/semgrep/javascript.yaml +60 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/semgrep/python.yaml +72 -0
- package/skills/variant-analysis/skills/variant-analysis/resources/variant-report-template.md +75 -0
- package/skills/video-frames/SKILL.md +46 -0
- package/skills/video-frames/scripts/frame.sh +81 -0
- package/skills/voice-call/SKILL.md +45 -0
- package/skills/wacli/SKILL.md +72 -0
- package/skills/weather/SKILL.md +54 -0
- package/skills/yara-authoring/.claude-plugin/plugin.json +9 -0
- package/skills/yara-authoring/README.md +131 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/SKILL.md +645 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/examples/MAL_Mac_ProtonRAT_Jan25.yar +99 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/examples/MAL_NPM_SupplyChain_Jan25.yar +170 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/examples/MAL_Win_Remcos_Jan25.yar +103 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/examples/SUSP_CRX_SuspiciousPermissions.yar +134 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/examples/SUSP_JS_Obfuscation_Jan25.yar +185 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/references/crx-module.md +214 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/references/dex-module.md +383 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/references/performance.md +333 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/references/strings.md +433 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/references/style-guide.md +257 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/references/testing.md +399 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/scripts/atom_analyzer.py +526 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/scripts/pyproject.toml +25 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/scripts/yara_lint.py +631 -0
- package/skills/yara-authoring/skills/yara-rule-authoring/workflows/rule-development.md +493 -0
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: peekaboo
|
|
3
|
+
description: Capture and automate macOS UI with the Peekaboo CLI.
|
|
4
|
+
homepage: https://peekaboo.boo
|
|
5
|
+
metadata:
|
|
6
|
+
{
|
|
7
|
+
"otto":
|
|
8
|
+
{
|
|
9
|
+
"emoji": "👀",
|
|
10
|
+
"os": ["darwin"],
|
|
11
|
+
"requires": { "bins": ["peekaboo"] },
|
|
12
|
+
"install":
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
"id": "brew",
|
|
16
|
+
"kind": "brew",
|
|
17
|
+
"formula": "steipete/tap/peekaboo",
|
|
18
|
+
"bins": ["peekaboo"],
|
|
19
|
+
"label": "Install Peekaboo (brew)",
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
},
|
|
23
|
+
}
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# Peekaboo
|
|
27
|
+
|
|
28
|
+
Peekaboo is a full macOS UI automation CLI: capture/inspect screens, target UI
|
|
29
|
+
elements, drive input, and manage apps/windows/menus. Commands share a snapshot
|
|
30
|
+
cache and support `--json`/`-j` for scripting. Run `peekaboo` or
|
|
31
|
+
`peekaboo <cmd> --help` for flags; `peekaboo --version` prints build metadata.
|
|
32
|
+
Tip: run via `polter peekaboo` to ensure fresh builds.
|
|
33
|
+
|
|
34
|
+
## Features (all CLI capabilities, excluding agent/MCP)
|
|
35
|
+
|
|
36
|
+
Core
|
|
37
|
+
|
|
38
|
+
- `bridge`: inspect Peekaboo Bridge host connectivity
|
|
39
|
+
- `capture`: live capture or video ingest + frame extraction
|
|
40
|
+
- `clean`: prune snapshot cache and temp files
|
|
41
|
+
- `config`: init/show/edit/validate, providers, models, credentials
|
|
42
|
+
- `image`: capture screenshots (screen/window/menu bar regions)
|
|
43
|
+
- `learn`: print the full agent guide + tool catalog
|
|
44
|
+
- `list`: apps, windows, screens, menubar, permissions
|
|
45
|
+
- `permissions`: check Screen Recording/Accessibility status
|
|
46
|
+
- `run`: execute `.peekaboo.json` scripts
|
|
47
|
+
- `sleep`: pause execution for a duration
|
|
48
|
+
- `tools`: list available tools with filtering/display options
|
|
49
|
+
|
|
50
|
+
Interaction
|
|
51
|
+
|
|
52
|
+
- `click`: target by ID/query/coords with smart waits
|
|
53
|
+
- `drag`: drag & drop across elements/coords/Dock
|
|
54
|
+
- `hotkey`: modifier combos like `cmd,shift,t`
|
|
55
|
+
- `move`: cursor positioning with optional smoothing
|
|
56
|
+
- `paste`: set clipboard -> paste -> restore
|
|
57
|
+
- `press`: special-key sequences with repeats
|
|
58
|
+
- `scroll`: directional scrolling (targeted + smooth)
|
|
59
|
+
- `swipe`: gesture-style drags between targets
|
|
60
|
+
- `type`: text + control keys (`--clear`, delays)
|
|
61
|
+
|
|
62
|
+
System
|
|
63
|
+
|
|
64
|
+
- `app`: launch/quit/relaunch/hide/unhide/switch/list apps
|
|
65
|
+
- `clipboard`: read/write clipboard (text/images/files)
|
|
66
|
+
- `dialog`: click/input/file/dismiss/list system dialogs
|
|
67
|
+
- `dock`: launch/right-click/hide/show/list Dock items
|
|
68
|
+
- `menu`: click/list application menus + menu extras
|
|
69
|
+
- `menubar`: list/click status bar items
|
|
70
|
+
- `open`: enhanced `open` with app targeting + JSON payloads
|
|
71
|
+
- `space`: list/switch/move-window (Spaces)
|
|
72
|
+
- `visualizer`: exercise Peekaboo visual feedback animations
|
|
73
|
+
- `window`: close/minimize/maximize/move/resize/focus/list
|
|
74
|
+
|
|
75
|
+
Vision
|
|
76
|
+
|
|
77
|
+
- `see`: annotated UI maps, snapshot IDs, optional analysis
|
|
78
|
+
|
|
79
|
+
Global runtime flags
|
|
80
|
+
|
|
81
|
+
- `--json`/`-j`, `--verbose`/`-v`, `--log-level <level>`
|
|
82
|
+
- `--no-remote`, `--bridge-socket <path>`
|
|
83
|
+
|
|
84
|
+
## Quickstart (happy path)
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
peekaboo permissions
|
|
88
|
+
peekaboo list apps --json
|
|
89
|
+
peekaboo see --annotate --path /tmp/peekaboo-see.png
|
|
90
|
+
peekaboo click --on B1
|
|
91
|
+
peekaboo type "Hello" --return
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Common targeting parameters (most interaction commands)
|
|
95
|
+
|
|
96
|
+
- App/window: `--app`, `--pid`, `--window-title`, `--window-id`, `--window-index`
|
|
97
|
+
- Snapshot targeting: `--snapshot` (ID from `see`; defaults to latest)
|
|
98
|
+
- Element/coords: `--on`/`--id` (element ID), `--coords x,y`
|
|
99
|
+
- Focus control: `--no-auto-focus`, `--space-switch`, `--bring-to-current-space`,
|
|
100
|
+
`--focus-timeout-seconds`, `--focus-retry-count`
|
|
101
|
+
|
|
102
|
+
## Common capture parameters
|
|
103
|
+
|
|
104
|
+
- Output: `--path`, `--format png|jpg`, `--retina`
|
|
105
|
+
- Targeting: `--mode screen|window|frontmost`, `--screen-index`,
|
|
106
|
+
`--window-title`, `--window-id`
|
|
107
|
+
- Analysis: `--analyze "prompt"`, `--annotate`
|
|
108
|
+
- Capture engine: `--capture-engine auto|classic|cg|modern|sckit`
|
|
109
|
+
|
|
110
|
+
## Common motion/typing parameters
|
|
111
|
+
|
|
112
|
+
- Timing: `--duration` (drag/swipe), `--steps`, `--delay` (type/scroll/press)
|
|
113
|
+
- Human-ish movement: `--profile human|linear`, `--wpm` (typing)
|
|
114
|
+
- Scroll: `--direction up|down|left|right`, `--amount <ticks>`, `--smooth`
|
|
115
|
+
|
|
116
|
+
## Examples
|
|
117
|
+
|
|
118
|
+
### See -> click -> type (most reliable flow)
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
peekaboo see --app Safari --window-title "Login" --annotate --path /tmp/see.png
|
|
122
|
+
peekaboo click --on B3 --app Safari
|
|
123
|
+
peekaboo type "user@example.com" --app Safari
|
|
124
|
+
peekaboo press tab --count 1 --app Safari
|
|
125
|
+
peekaboo type "supersecret" --app Safari --return
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Target by window id
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
peekaboo list windows --app "Visual Studio Code" --json
|
|
132
|
+
peekaboo click --window-id 12345 --coords 120,160
|
|
133
|
+
peekaboo type "Hello from Peekaboo" --window-id 12345
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### Capture screenshots + analyze
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
peekaboo image --mode screen --screen-index 0 --retina --path /tmp/screen.png
|
|
140
|
+
peekaboo image --app Safari --window-title "Dashboard" --analyze "Summarize KPIs"
|
|
141
|
+
peekaboo see --mode screen --screen-index 0 --analyze "Summarize the dashboard"
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### Live capture (motion-aware)
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
peekaboo capture live --mode region --region 100,100,800,600 --duration 30 \
|
|
148
|
+
--active-fps 8 --idle-fps 2 --highlight-changes --path /tmp/capture
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### App + window management
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
peekaboo app launch "Safari" --open https://example.com
|
|
155
|
+
peekaboo window focus --app Safari --window-title "Example"
|
|
156
|
+
peekaboo window set-bounds --app Safari --x 50 --y 50 --width 1200 --height 800
|
|
157
|
+
peekaboo app quit --app Safari
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### Menus, menubar, dock
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
peekaboo menu click --app Safari --item "New Window"
|
|
164
|
+
peekaboo menu click --app TextEdit --path "Format > Font > Show Fonts"
|
|
165
|
+
peekaboo menu click-extra --title "WiFi"
|
|
166
|
+
peekaboo dock launch Safari
|
|
167
|
+
peekaboo menubar list --json
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
### Mouse + gesture input
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
peekaboo move 500,300 --smooth
|
|
174
|
+
peekaboo drag --from B1 --to T2
|
|
175
|
+
peekaboo swipe --from-coords 100,500 --to-coords 100,200 --duration 800
|
|
176
|
+
peekaboo scroll --direction down --amount 6 --smooth
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
### Keyboard input
|
|
180
|
+
|
|
181
|
+
```bash
|
|
182
|
+
peekaboo hotkey --keys "cmd,shift,t"
|
|
183
|
+
peekaboo press escape
|
|
184
|
+
peekaboo type "Line 1\nLine 2" --delay 10
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
Notes
|
|
188
|
+
|
|
189
|
+
- Requires Screen Recording + Accessibility permissions.
|
|
190
|
+
- Use `peekaboo see --annotate` to identify targets before clicking.
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: sag
|
|
3
|
+
description: ElevenLabs text-to-speech with mac-style say UX.
|
|
4
|
+
homepage: https://sag.sh
|
|
5
|
+
metadata:
|
|
6
|
+
{
|
|
7
|
+
"otto":
|
|
8
|
+
{
|
|
9
|
+
"emoji": "🗣️",
|
|
10
|
+
"requires": { "bins": ["sag"], "env": ["ELEVENLABS_API_KEY"] },
|
|
11
|
+
"primaryEnv": "ELEVENLABS_API_KEY",
|
|
12
|
+
"install":
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
"id": "brew",
|
|
16
|
+
"kind": "brew",
|
|
17
|
+
"formula": "steipete/tap/sag",
|
|
18
|
+
"bins": ["sag"],
|
|
19
|
+
"label": "Install sag (brew)",
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
},
|
|
23
|
+
}
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# sag
|
|
27
|
+
|
|
28
|
+
Use `sag` for ElevenLabs TTS with local playback.
|
|
29
|
+
|
|
30
|
+
API key (required)
|
|
31
|
+
|
|
32
|
+
- `ELEVENLABS_API_KEY` (preferred)
|
|
33
|
+
- `SAG_API_KEY` also supported by the CLI
|
|
34
|
+
|
|
35
|
+
Quick start
|
|
36
|
+
|
|
37
|
+
- `sag "Hello there"`
|
|
38
|
+
- `sag speak -v "Roger" "Hello"`
|
|
39
|
+
- `sag voices`
|
|
40
|
+
- `sag prompting` (model-specific tips)
|
|
41
|
+
|
|
42
|
+
Model notes
|
|
43
|
+
|
|
44
|
+
- Default: `eleven_v3` (expressive)
|
|
45
|
+
- Stable: `eleven_multilingual_v2`
|
|
46
|
+
- Fast: `eleven_flash_v2_5`
|
|
47
|
+
|
|
48
|
+
Pronunciation + delivery rules
|
|
49
|
+
|
|
50
|
+
- First fix: respell (e.g. "key-note"), add hyphens, adjust casing.
|
|
51
|
+
- Numbers/units/URLs: `--normalize auto` (or `off` if it harms names).
|
|
52
|
+
- Language bias: `--lang en|de|fr|...` to guide normalization.
|
|
53
|
+
- v3: SSML `<break>` not supported; use `[pause]`, `[short pause]`, `[long pause]`.
|
|
54
|
+
- v2/v2.5: SSML `<break time="1.5s" />` supported; `<phoneme>` not exposed in `sag`.
|
|
55
|
+
|
|
56
|
+
v3 audio tags (put at the entrance of a line)
|
|
57
|
+
|
|
58
|
+
- `[whispers]`, `[shouts]`, `[sings]`
|
|
59
|
+
- `[laughs]`, `[starts laughing]`, `[sighs]`, `[exhales]`
|
|
60
|
+
- `[sarcastic]`, `[curious]`, `[excited]`, `[crying]`, `[mischievously]`
|
|
61
|
+
- Example: `sag "[whispers] keep this quiet. [short pause] ok?"`
|
|
62
|
+
|
|
63
|
+
Voice defaults
|
|
64
|
+
|
|
65
|
+
- `ELEVENLABS_VOICE_ID` or `SAG_VOICE_ID`
|
|
66
|
+
|
|
67
|
+
Confirm voice + speaker before long output.
|
|
68
|
+
|
|
69
|
+
## Chat voice responses
|
|
70
|
+
|
|
71
|
+
When Peter asks for a "voice" reply (e.g., "crazy scientist voice", "explain in voice"), generate audio and send it:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# Generate audio file
|
|
75
|
+
sag -v Clawd -o /tmp/voice-reply.mp3 "Your message here"
|
|
76
|
+
|
|
77
|
+
# Then include in reply:
|
|
78
|
+
# MEDIA:/tmp/voice-reply.mp3
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Voice character tips:
|
|
82
|
+
|
|
83
|
+
- Crazy scientist: Use `[excited]` tags, dramatic pauses `[short pause]`, vary intensity
|
|
84
|
+
- Calm: Use `[whispers]` or slower pacing
|
|
85
|
+
- Dramatic: Use `[sings]` or `[shouts]` sparingly
|
|
86
|
+
|
|
87
|
+
Default voice for Clawd: `lj2rcrvANS3gaWWnczSX` (or just `-v Clawd`)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ask-questions-if-underspecified",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Clarify requirements before implementing. Do not use automatically, only when invoked explicitly.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Kevin Valerio",
|
|
7
|
+
"email": "opensource@trailofbits.com",
|
|
8
|
+
"url": "https://github.com/trailofbits"
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Ask Questions If Underspecified
|
|
2
|
+
|
|
3
|
+
Ask the minimum set of clarifying questions needed to avoid wrong work.
|
|
4
|
+
|
|
5
|
+
**Author:** Kevin Valerio
|
|
6
|
+
|
|
7
|
+
## When to Use
|
|
8
|
+
|
|
9
|
+
Use this skill when:
|
|
10
|
+
- The request has multiple plausible interpretations
|
|
11
|
+
- Success criteria, scope, constraints, or environment details are unclear
|
|
12
|
+
- Starting implementation without clarification risks doing the wrong work
|
|
13
|
+
|
|
14
|
+
## What It Does
|
|
15
|
+
|
|
16
|
+
- Asks 1–5 must-have questions in a scannable, answerable format (multiple choice + defaults)
|
|
17
|
+
- Pauses before acting until required answers are provided (unless the user approves proceeding on stated assumptions)
|
|
18
|
+
- Restates confirmed requirements before starting work
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
/plugin install trailofbits/skills/plugins/ask-questions-if-underspecified
|
|
24
|
+
```
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ask-questions-if-underspecified
|
|
3
|
+
description: Clarify requirements before implementing. Use when serious doubts arise.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Ask Questions If Underspecified
|
|
7
|
+
|
|
8
|
+
## When to Use
|
|
9
|
+
|
|
10
|
+
Use this skill when a request has multiple plausible interpretations or key details (objective, scope, constraints, environment, or safety) are unclear.
|
|
11
|
+
|
|
12
|
+
## When NOT to Use
|
|
13
|
+
|
|
14
|
+
Do not use this skill when the request is already clear, or when a quick, low-risk discovery read can answer the missing details.
|
|
15
|
+
|
|
16
|
+
## Goal
|
|
17
|
+
|
|
18
|
+
Ask the minimum set of clarifying questions needed to avoid wrong work; do not start implementing until the must-have questions are answered (or the user explicitly approves proceeding with stated assumptions).
|
|
19
|
+
|
|
20
|
+
## Workflow
|
|
21
|
+
|
|
22
|
+
### 1) Decide whether the request is underspecified
|
|
23
|
+
|
|
24
|
+
Treat a request as underspecified if after exploring how to perform the work, some or all of the following are not clear:
|
|
25
|
+
- Define the objective (what should change vs stay the same)
|
|
26
|
+
- Define "done" (acceptance criteria, examples, edge cases)
|
|
27
|
+
- Define scope (which files/components/users are in/out)
|
|
28
|
+
- Define constraints (compatibility, performance, style, deps, time)
|
|
29
|
+
- Identify environment (language/runtime versions, OS, build/test runner)
|
|
30
|
+
- Clarify safety/reversibility (data migration, rollout/rollback, risk)
|
|
31
|
+
|
|
32
|
+
If multiple plausible interpretations exist, assume it is underspecified.
|
|
33
|
+
|
|
34
|
+
### 2) Ask must-have questions first (keep it small)
|
|
35
|
+
|
|
36
|
+
Ask 1-5 questions in the first pass. Prefer questions that eliminate whole branches of work.
|
|
37
|
+
|
|
38
|
+
Make questions easy to answer:
|
|
39
|
+
- Optimize for scannability (short, numbered questions; avoid paragraphs)
|
|
40
|
+
- Offer multiple-choice options when possible
|
|
41
|
+
- Suggest reasonable defaults when appropriate (mark them clearly as the default/recommended choice; bold the recommended choice in the list, or if you present options in a code block, put a bold "Recommended" line immediately above the block and also tag defaults inside the block)
|
|
42
|
+
- Include a fast-path response (e.g., reply `defaults` to accept all recommended/default choices)
|
|
43
|
+
- Include a low-friction "not sure" option when helpful (e.g., "Not sure - use default")
|
|
44
|
+
- Separate "Need to know" from "Nice to know" if that reduces friction
|
|
45
|
+
- Structure options so the user can respond with compact decisions (e.g., `1b 2a 3c`); restate the chosen options in plain language to confirm
|
|
46
|
+
|
|
47
|
+
### 3) Pause before acting
|
|
48
|
+
|
|
49
|
+
Until must-have answers arrive:
|
|
50
|
+
- Do not run commands, edit files, or produce a detailed plan that depends on unknowns
|
|
51
|
+
- Do perform a clearly labeled, low-risk discovery step only if it does not commit you to a direction (e.g., inspect repo structure, read relevant config files)
|
|
52
|
+
|
|
53
|
+
If the user explicitly asks you to proceed without answers:
|
|
54
|
+
- State your assumptions as a short numbered list
|
|
55
|
+
- Ask for confirmation; proceed only after they confirm or correct them
|
|
56
|
+
|
|
57
|
+
### 4) Confirm interpretation, then proceed
|
|
58
|
+
|
|
59
|
+
Once you have answers, restate the requirements in 1-3 sentences (including key constraints and what success looks like), then start work.
|
|
60
|
+
|
|
61
|
+
## Question templates
|
|
62
|
+
|
|
63
|
+
- "Before I start, I need: (1) ..., (2) ..., (3) .... If you don't care about (2), I will assume ...."
|
|
64
|
+
- "Which of these should it be? A) ... B) ... C) ... (pick one)"
|
|
65
|
+
- "What would you consider 'done'? For example: ..."
|
|
66
|
+
- "Any constraints I must follow (versions, performance, style, deps)? If none, I will target the existing project defaults."
|
|
67
|
+
- Use numbered questions with lettered options and a clear reply format
|
|
68
|
+
|
|
69
|
+
```text
|
|
70
|
+
1) Scope?
|
|
71
|
+
a) Minimal change (default)
|
|
72
|
+
b) Refactor while touching the area
|
|
73
|
+
c) Not sure - use default
|
|
74
|
+
2) Compatibility target?
|
|
75
|
+
a) Current project defaults (default)
|
|
76
|
+
b) Also support older versions: <specify>
|
|
77
|
+
c) Not sure - use default
|
|
78
|
+
|
|
79
|
+
Reply with: defaults (or 1a 2a)
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Anti-patterns
|
|
83
|
+
|
|
84
|
+
- Don't ask questions you can answer with a quick, low-risk discovery read (e.g., configs, existing patterns, docs).
|
|
85
|
+
- Don't ask open-ended questions if a tight multiple-choice or yes/no would eliminate ambiguity faster.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "audit-context-building",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Build deep architectural context through ultra-granular code analysis before vulnerability hunting",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Omar Inuwa",
|
|
7
|
+
"email": "opensource@trailofbits.com",
|
|
8
|
+
"url": "https://github.com/trailofbits"
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Audit Context Building
|
|
2
|
+
|
|
3
|
+
Build deep architectural context through ultra-granular code analysis before vulnerability hunting.
|
|
4
|
+
|
|
5
|
+
**Author:** Omar Inuwa
|
|
6
|
+
|
|
7
|
+
## When to Use
|
|
8
|
+
|
|
9
|
+
Use this skill when you need to:
|
|
10
|
+
- Develop deep comprehension of a codebase before security auditing
|
|
11
|
+
- Build bottom-up understanding instead of high-level guessing
|
|
12
|
+
- Reduce hallucinations and context loss during complex analysis
|
|
13
|
+
- Prepare for threat modeling or architecture review
|
|
14
|
+
|
|
15
|
+
## What It Does
|
|
16
|
+
|
|
17
|
+
This skill governs how Claude thinks during the context-building phase of an audit. When active, Claude will:
|
|
18
|
+
|
|
19
|
+
- Perform **line-by-line / block-by-block** code analysis
|
|
20
|
+
- Apply **First Principles**, **5 Whys**, and **5 Hows** at micro scale
|
|
21
|
+
- Build and maintain a stable, explicit mental model
|
|
22
|
+
- Identify invariants, assumptions, flows, and reasoning hazards
|
|
23
|
+
- Track cross-function and external call flows with full context propagation
|
|
24
|
+
|
|
25
|
+
## Key Principle
|
|
26
|
+
|
|
27
|
+
This is a **pure context building** skill. It does NOT:
|
|
28
|
+
- Identify vulnerabilities
|
|
29
|
+
- Propose fixes
|
|
30
|
+
- Generate proofs-of-concept
|
|
31
|
+
- Assign severity or impact
|
|
32
|
+
|
|
33
|
+
It exists solely to build deep understanding before the vulnerability-hunting phase.
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
/plugin install trailofbits/skills/plugins/audit-context-building
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Phases
|
|
42
|
+
|
|
43
|
+
1. **Initial Orientation** - Map modules, entrypoints, actors, and storage
|
|
44
|
+
2. **Ultra-Granular Function Analysis** - Line-by-line semantic analysis with cross-function flow tracking
|
|
45
|
+
3. **Global System Understanding** - State/invariant reconstruction, workflow mapping, trust boundaries
|
|
46
|
+
|
|
47
|
+
## Anti-Hallucination Rules
|
|
48
|
+
|
|
49
|
+
- Never reshape evidence to fit earlier assumptions
|
|
50
|
+
- Update the model explicitly when contradicted
|
|
51
|
+
- Avoid vague guesses; use "Unclear; need to inspect X"
|
|
52
|
+
- Cross-reference constantly to maintain global coherence
|
|
53
|
+
|
|
54
|
+
## Related Skills
|
|
55
|
+
|
|
56
|
+
- `issue-writer` - Write up findings after context is built
|
|
57
|
+
- `differential-review` - Uses context-building for baseline analysis
|
|
58
|
+
- `spec-compliance` - Compare understood behavior to documentation
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: trailofbits:audit-context
|
|
3
|
+
description: Builds deep architectural context before vulnerability hunting
|
|
4
|
+
argument-hint: "<codebase-path> [--focus <module>]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Grep
|
|
8
|
+
- Glob
|
|
9
|
+
- Bash
|
|
10
|
+
- Task
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Build Audit Context
|
|
14
|
+
|
|
15
|
+
**Arguments:** $ARGUMENTS
|
|
16
|
+
|
|
17
|
+
Parse arguments:
|
|
18
|
+
1. **Codebase path** (required): Path to codebase to analyze
|
|
19
|
+
2. **Focus** (optional): `--focus <module>` for specific module analysis
|
|
20
|
+
|
|
21
|
+
Invoke the `audit-context-building` skill with these arguments for the full workflow.
|