@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
package/skills/security-culture-index/skills/interpreting-culture-index/workflows/plan-onboarding.md
ADDED
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
<required_reading>
|
|
2
|
+
|
|
3
|
+
**Read these reference files before planning onboarding:**
|
|
4
|
+
1. `references/primary-traits.md` - A, B, C, D trait details and communication styles
|
|
5
|
+
2. `references/team-composition.md` - Gas/Brake/Glue and conflict pairs
|
|
6
|
+
3. `references/patterns-archetypes.md` - Pattern identification
|
|
7
|
+
|
|
8
|
+
</required_reading>
|
|
9
|
+
|
|
10
|
+
<purpose>
|
|
11
|
+
|
|
12
|
+
Plan effective onboarding for a new hire using their Culture Index profile and the team's profiles. This workflow identifies likely allies, potential friction points, and provides specific recommendations for the first 90 days.
|
|
13
|
+
|
|
14
|
+
**Context:** This workflow is typically used after the new hire has signed their offer and completed the CI survey, but before their start date.
|
|
15
|
+
|
|
16
|
+
</purpose>
|
|
17
|
+
|
|
18
|
+
<process>
|
|
19
|
+
|
|
20
|
+
**Step 1: Load New Hire Profile**
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
New Hire: [Name]
|
|
24
|
+
Start Date: [Date]
|
|
25
|
+
Role: [Title]
|
|
26
|
+
Reports To: [Manager name]
|
|
27
|
+
|
|
28
|
+
Profile:
|
|
29
|
+
- Pattern: [Archetype]
|
|
30
|
+
- A: [position relative to arrow]
|
|
31
|
+
- B: [position relative to arrow]
|
|
32
|
+
- C: [position relative to arrow]
|
|
33
|
+
- D: [position relative to arrow]
|
|
34
|
+
- L: [absolute value]
|
|
35
|
+
- I: [absolute value]
|
|
36
|
+
- EU Survey: [value]
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**If comparing to predicted profile (from interview):**
|
|
40
|
+
| Trait | Predicted | Actual | Delta |
|
|
41
|
+
|-------|-----------|--------|-------|
|
|
42
|
+
| A | [pred] | [actual] | [diff] |
|
|
43
|
+
| B | [pred] | [actual] | [diff] |
|
|
44
|
+
| C | [pred] | [actual] | [diff] |
|
|
45
|
+
| D | [pred] | [actual] | [diff] |
|
|
46
|
+
|
|
47
|
+
Note any significant differences for onboarding planning.
|
|
48
|
+
|
|
49
|
+
**Step 2: Load Team Profiles**
|
|
50
|
+
|
|
51
|
+
List immediate team members:
|
|
52
|
+
|
|
53
|
+
| Name | Pattern | A | B | C | D | Role |
|
|
54
|
+
|------|---------|---|---|---|---|------|
|
|
55
|
+
| [Manager] | [pattern] | [pos] | [pos] | [pos] | [pos] | Manager |
|
|
56
|
+
| [Peer 1] | [pattern] | [pos] | [pos] | [pos] | [pos] | [role] |
|
|
57
|
+
| [Peer 2] | [pattern] | [pos] | [pos] | [pos] | [pos] | [role] |
|
|
58
|
+
|
|
59
|
+
**Team Composition:**
|
|
60
|
+
- Gas (High A): [count] people
|
|
61
|
+
- Brake (High D): [count] people
|
|
62
|
+
- Glue (High B): [count] people
|
|
63
|
+
|
|
64
|
+
**Step 3: Identify Natural Allies**
|
|
65
|
+
|
|
66
|
+
Find team members with compatible profiles:
|
|
67
|
+
|
|
68
|
+
**High compatibility indicators:**
|
|
69
|
+
- Similar pattern/archetype
|
|
70
|
+
- Similar B position (social energy match)
|
|
71
|
+
- Similar C position (pace match)
|
|
72
|
+
- Complementary traits (their strength helps their gap)
|
|
73
|
+
|
|
74
|
+
| Team Member | Compatibility | Reason |
|
|
75
|
+
|-------------|---------------|--------|
|
|
76
|
+
| [Name] | High | [trait similarity or complement] |
|
|
77
|
+
| [Name] | Medium | [partial match] |
|
|
78
|
+
|
|
79
|
+
**Recommended buddy/mentor:**
|
|
80
|
+
- Primary: [Name] - [reason for pairing]
|
|
81
|
+
- Secondary: [Name] - [reason for backup]
|
|
82
|
+
|
|
83
|
+
**Step 4: Flag Potential Friction Points**
|
|
84
|
+
|
|
85
|
+
Find team members with opposite profiles:
|
|
86
|
+
|
|
87
|
+
| Team Member | Friction Risk | Source | Mitigation |
|
|
88
|
+
|-------------|---------------|--------|------------|
|
|
89
|
+
| [Name] | High | [opposite trait] | [suggestion] |
|
|
90
|
+
| [Name] | Medium | [gap] | [suggestion] |
|
|
91
|
+
|
|
92
|
+
**Common friction sources:**
|
|
93
|
+
- High A vs Low A: Independence vs collaboration expectations
|
|
94
|
+
- High B vs Low B: Social needs mismatch
|
|
95
|
+
- High C vs Low C: Pace/urgency mismatch
|
|
96
|
+
- High D vs Low D: Detail orientation mismatch
|
|
97
|
+
|
|
98
|
+
**Step 5: Manager Compatibility Assessment**
|
|
99
|
+
|
|
100
|
+
Compare new hire to their manager:
|
|
101
|
+
|
|
102
|
+
| Trait | Manager | New Hire | Gap | Adjustment Needed |
|
|
103
|
+
|-------|---------|----------|-----|-------------------|
|
|
104
|
+
| A | [pos] | [pos] | [diff] | [manager adjustment] |
|
|
105
|
+
| B | [pos] | [pos] | [diff] | [manager adjustment] |
|
|
106
|
+
| C | [pos] | [pos] | [diff] | [manager adjustment] |
|
|
107
|
+
| D | [pos] | [pos] | [diff] | [manager adjustment] |
|
|
108
|
+
|
|
109
|
+
**Manager coaching points:**
|
|
110
|
+
- [Specific adjustment for this new hire]
|
|
111
|
+
- [Specific adjustment for this new hire]
|
|
112
|
+
|
|
113
|
+
**Step 6: Design First 30 Days**
|
|
114
|
+
|
|
115
|
+
Based on new hire's profile:
|
|
116
|
+
|
|
117
|
+
**Week 1 - Orientation:**
|
|
118
|
+
|
|
119
|
+
| If New Hire Is... | Orientation Approach |
|
|
120
|
+
|-------------------|---------------------|
|
|
121
|
+
| High A | Give autonomy early, avoid over-managing, focus on outcomes |
|
|
122
|
+
| Low A | Provide clear direction, structured intro, defined expectations |
|
|
123
|
+
| High B | Introduce to team quickly, social activities, relationships first |
|
|
124
|
+
| Low B | Gradual introductions, 1:1 over group, respect alone time |
|
|
125
|
+
| High C | Predictable schedule, one thing at a time, advance notice |
|
|
126
|
+
| Low C | Variety early, multiple projects, don't over-structure |
|
|
127
|
+
| High D | Documented processes, clear SOPs, training materials |
|
|
128
|
+
| Low D | Big picture context, creative problems, flexibility |
|
|
129
|
+
|
|
130
|
+
**Your Week 1 approach:**
|
|
131
|
+
- [Specific recommendation based on their traits]
|
|
132
|
+
- [Specific recommendation based on their traits]
|
|
133
|
+
- [Specific recommendation based on their traits]
|
|
134
|
+
|
|
135
|
+
**Weeks 2-4 - Integration:**
|
|
136
|
+
|
|
137
|
+
| Priority | Action | Why (based on profile) |
|
|
138
|
+
|----------|--------|------------------------|
|
|
139
|
+
| 1 | [action] | [trait-based reason] |
|
|
140
|
+
| 2 | [action] | [trait-based reason] |
|
|
141
|
+
| 3 | [action] | [trait-based reason] |
|
|
142
|
+
|
|
143
|
+
**Step 7: Design 30-60 Days**
|
|
144
|
+
|
|
145
|
+
| Focus Area | Approach for This Profile |
|
|
146
|
+
|------------|---------------------------|
|
|
147
|
+
| Feedback style | [Based on A and D traits] |
|
|
148
|
+
| Meeting cadence | [Based on B and C traits] |
|
|
149
|
+
| Project type | [Based on I and pattern] |
|
|
150
|
+
| Independence level | [Based on A trait] |
|
|
151
|
+
| Check-in format | [Based on B and C traits] |
|
|
152
|
+
|
|
153
|
+
**Milestones to target:**
|
|
154
|
+
- Day 30: [milestone appropriate for their pattern]
|
|
155
|
+
- Day 45: [milestone appropriate for their pattern]
|
|
156
|
+
- Day 60: [milestone appropriate for their pattern]
|
|
157
|
+
|
|
158
|
+
**Step 8: Design 60-90 Days**
|
|
159
|
+
|
|
160
|
+
At this stage, focus on:
|
|
161
|
+
|
|
162
|
+
| If New Hire Is... | 60-90 Day Focus |
|
|
163
|
+
|-------------------|-----------------|
|
|
164
|
+
| High A | Expand scope, give ownership of projects |
|
|
165
|
+
| Low A | Establish regular collaboration patterns |
|
|
166
|
+
| High B | Integrate into team social fabric, culture building |
|
|
167
|
+
| Low B | Ensure solo time is protected, deep work established |
|
|
168
|
+
| High C | Consistent routines established, predictable workflow |
|
|
169
|
+
| Low C | Multiple concurrent projects, varied work |
|
|
170
|
+
| High D | Mastery of key processes, becoming the expert |
|
|
171
|
+
| Low D | Creative challenges, problem-solving opportunities |
|
|
172
|
+
|
|
173
|
+
**Success indicators by Day 90:**
|
|
174
|
+
- [ ] [Indicator appropriate for their pattern]
|
|
175
|
+
- [ ] [Indicator appropriate for their pattern]
|
|
176
|
+
- [ ] [Indicator appropriate for their pattern]
|
|
177
|
+
|
|
178
|
+
**Step 9: Prepare Manager Briefing**
|
|
179
|
+
|
|
180
|
+
Create a one-page briefing for the manager:
|
|
181
|
+
|
|
182
|
+
```markdown
|
|
183
|
+
## Onboarding Briefing: [New Hire Name]
|
|
184
|
+
|
|
185
|
+
**Start Date:** [Date]
|
|
186
|
+
**Pattern:** [Archetype]
|
|
187
|
+
|
|
188
|
+
### Key Traits to Understand
|
|
189
|
+
| Trait | Position | What It Means |
|
|
190
|
+
|-------|----------|---------------|
|
|
191
|
+
| [Leading trait] | [High/Low] | [one-line implication] |
|
|
192
|
+
| [Second trait] | [High/Low] | [one-line implication] |
|
|
193
|
+
|
|
194
|
+
### Communication Style
|
|
195
|
+
- **Prefer:** [based on traits]
|
|
196
|
+
- **Avoid:** [based on traits]
|
|
197
|
+
- **Feedback:** [how to deliver based on A/D]
|
|
198
|
+
|
|
199
|
+
### What Motivates Them
|
|
200
|
+
1. [Motivator based on profile]
|
|
201
|
+
2. [Motivator based on profile]
|
|
202
|
+
|
|
203
|
+
### Potential Friction Areas
|
|
204
|
+
- With [team member]: [friction source and mitigation]
|
|
205
|
+
|
|
206
|
+
### Recommended Buddy
|
|
207
|
+
[Name] - [reason for pairing]
|
|
208
|
+
|
|
209
|
+
### First Week Priorities
|
|
210
|
+
1. [Priority based on their traits]
|
|
211
|
+
2. [Priority based on their traits]
|
|
212
|
+
3. [Priority based on their traits]
|
|
213
|
+
|
|
214
|
+
### Red Flags to Watch
|
|
215
|
+
- [Signal that they're struggling, based on profile]
|
|
216
|
+
- [Signal that they're struggling, based on profile]
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
**Step 10: Compile Full Onboarding Plan**
|
|
220
|
+
|
|
221
|
+
```markdown
|
|
222
|
+
## Onboarding Plan: [New Hire Name]
|
|
223
|
+
|
|
224
|
+
**Prepared:** [Date]
|
|
225
|
+
**Start Date:** [Start Date]
|
|
226
|
+
**Role:** [Title]
|
|
227
|
+
**Manager:** [Manager Name]
|
|
228
|
+
|
|
229
|
+
### Profile Summary
|
|
230
|
+
- **Pattern:** [Archetype]
|
|
231
|
+
- **Key Traits:** [Top 2-3 trait positions]
|
|
232
|
+
- **EU:** [Survey value]
|
|
233
|
+
|
|
234
|
+
### Team Integration
|
|
235
|
+
|
|
236
|
+
**Natural Allies:**
|
|
237
|
+
- [Name] - [reason]
|
|
238
|
+
|
|
239
|
+
**Potential Friction:**
|
|
240
|
+
- [Name] - [source and mitigation]
|
|
241
|
+
|
|
242
|
+
**Recommended Buddy:** [Name]
|
|
243
|
+
|
|
244
|
+
### Manager Adjustments
|
|
245
|
+
1. [Adjustment based on trait gap]
|
|
246
|
+
2. [Adjustment based on trait gap]
|
|
247
|
+
|
|
248
|
+
### First 90 Days
|
|
249
|
+
|
|
250
|
+
**Week 1:**
|
|
251
|
+
- [Specific action]
|
|
252
|
+
- [Specific action]
|
|
253
|
+
|
|
254
|
+
**Days 8-30:**
|
|
255
|
+
- [Focus area]
|
|
256
|
+
- [Focus area]
|
|
257
|
+
|
|
258
|
+
**Days 30-60:**
|
|
259
|
+
- [Focus area]
|
|
260
|
+
- [Focus area]
|
|
261
|
+
|
|
262
|
+
**Days 60-90:**
|
|
263
|
+
- [Focus area]
|
|
264
|
+
- [Focus area]
|
|
265
|
+
|
|
266
|
+
### Success Indicators
|
|
267
|
+
- Day 30: [indicator]
|
|
268
|
+
- Day 60: [indicator]
|
|
269
|
+
- Day 90: [indicator]
|
|
270
|
+
|
|
271
|
+
### Communication Preferences
|
|
272
|
+
- **Style:** [based on traits]
|
|
273
|
+
- **Frequency:** [based on C and B]
|
|
274
|
+
- **Format:** [based on traits]
|
|
275
|
+
|
|
276
|
+
### Motivators
|
|
277
|
+
1. [Primary motivator]
|
|
278
|
+
2. [Secondary motivator]
|
|
279
|
+
|
|
280
|
+
### Watch Areas
|
|
281
|
+
- [Signal they're struggling]
|
|
282
|
+
- [Common challenge for this pattern]
|
|
283
|
+
|
|
284
|
+
### Notes
|
|
285
|
+
- [Any prediction vs actual differences]
|
|
286
|
+
- [Any special considerations]
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
</process>
|
|
290
|
+
|
|
291
|
+
<anti_patterns>
|
|
292
|
+
|
|
293
|
+
Avoid these onboarding mistakes:
|
|
294
|
+
|
|
295
|
+
- **One-size-fits-all onboarding**: Adjust approach based on their traits
|
|
296
|
+
- **Ignoring manager compatibility**: Manager adjustments are critical for retention
|
|
297
|
+
- **Assigning random buddies**: Match based on profile compatibility
|
|
298
|
+
- **Over-socializing Low B's**: Respect their need for alone time
|
|
299
|
+
- **Under-socializing High B's**: Include them quickly or they'll feel excluded
|
|
300
|
+
- **Rushing High C's**: Give them time to settle into routines
|
|
301
|
+
- **Boring Low C's**: Keep them engaged with variety
|
|
302
|
+
- **Surprising High D's**: Provide structure and documentation
|
|
303
|
+
|
|
304
|
+
</anti_patterns>
|
|
305
|
+
|
|
306
|
+
<success_criteria>
|
|
307
|
+
|
|
308
|
+
Onboarding plan is complete when:
|
|
309
|
+
- [ ] New hire profile loaded and analyzed
|
|
310
|
+
- [ ] Predicted vs actual comparison noted (if applicable)
|
|
311
|
+
- [ ] All team profiles loaded
|
|
312
|
+
- [ ] Natural allies identified with buddy recommendation
|
|
313
|
+
- [ ] Friction points flagged with mitigations
|
|
314
|
+
- [ ] Manager compatibility assessed with adjustments
|
|
315
|
+
- [ ] First 30 days designed based on traits
|
|
316
|
+
- [ ] 30-60 day plan created
|
|
317
|
+
- [ ] 60-90 day plan created
|
|
318
|
+
- [ ] Manager briefing prepared
|
|
319
|
+
- [ ] Success indicators defined
|
|
320
|
+
- [ ] Watch areas documented
|
|
321
|
+
|
|
322
|
+
</success_criteria>
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
<required_reading>
|
|
2
|
+
|
|
3
|
+
**Read these reference files before analyzing:**
|
|
4
|
+
1. `references/interview-trait-signals.md` - Behavioral signals for each trait
|
|
5
|
+
2. `references/primary-traits.md` - A, B, C, D trait details
|
|
6
|
+
3. `references/secondary-traits.md` - L, I trait details
|
|
7
|
+
4. `references/patterns-archetypes.md` - Pattern identification
|
|
8
|
+
|
|
9
|
+
</required_reading>
|
|
10
|
+
|
|
11
|
+
<purpose>
|
|
12
|
+
|
|
13
|
+
Predict Culture Index traits from interview transcripts. This workflow is used when:
|
|
14
|
+
- Candidates have been interviewed but haven't taken the CI survey yet
|
|
15
|
+
- You want preliminary trait estimates before extending an offer
|
|
16
|
+
- You want to compare predicted vs actual CI (after offer is signed)
|
|
17
|
+
|
|
18
|
+
**Important:** This produces predictions, not diagnoses. The actual CI survey will be administered after an offer is signed and before the start date.
|
|
19
|
+
|
|
20
|
+
</purpose>
|
|
21
|
+
|
|
22
|
+
<process>
|
|
23
|
+
|
|
24
|
+
**Step 1: Load the Transcript**
|
|
25
|
+
|
|
26
|
+
Request the interview transcript. Ideal format includes:
|
|
27
|
+
- Interviewer questions clearly marked
|
|
28
|
+
- Candidate responses clearly marked
|
|
29
|
+
- Timestamps or durations (helpful but not required)
|
|
30
|
+
- Multiple interviews if available (more data = higher confidence)
|
|
31
|
+
|
|
32
|
+
**Step 2: Initial Read-Through**
|
|
33
|
+
|
|
34
|
+
First pass - get overall impression:
|
|
35
|
+
- How does the candidate communicate?
|
|
36
|
+
- What's their energy level?
|
|
37
|
+
- What topics engage them most?
|
|
38
|
+
- What's their default communication style?
|
|
39
|
+
|
|
40
|
+
Note your initial gut sense before detailed analysis.
|
|
41
|
+
|
|
42
|
+
**Step 3: Analyze A (Autonomy) Signals**
|
|
43
|
+
|
|
44
|
+
Search transcript for:
|
|
45
|
+
|
|
46
|
+
| Look For | High A | Low A |
|
|
47
|
+
|----------|--------|-------|
|
|
48
|
+
| Pronouns | "I decided", "I built" | "We decided", "Our team" |
|
|
49
|
+
| Credit | Takes personal credit | Deflects to team |
|
|
50
|
+
| Questions | Reframes, pushes back | Asks for clarification |
|
|
51
|
+
| Initiative | Acted without being asked | Waited for direction |
|
|
52
|
+
| Tone | Assertive, confident | Tentative, collaborative |
|
|
53
|
+
|
|
54
|
+
**Record:**
|
|
55
|
+
- Position: High / Low / Normative
|
|
56
|
+
- Confidence: High / Medium / Low
|
|
57
|
+
- Key quotes (2-3 examples)
|
|
58
|
+
|
|
59
|
+
**Step 4: Analyze B (Social) Signals**
|
|
60
|
+
|
|
61
|
+
Search transcript for:
|
|
62
|
+
|
|
63
|
+
| Look For | High B | Low B |
|
|
64
|
+
|----------|--------|-------|
|
|
65
|
+
| Rapport | Builds connection, asks about interviewer | Gets straight to business |
|
|
66
|
+
| Stories | People-centric narratives | Task-centric descriptions |
|
|
67
|
+
| Responses | Verbose, talks through thinking | Brief, direct answers |
|
|
68
|
+
| Energy | Animated, expressive | Reserved, measured |
|
|
69
|
+
| Culture questions | Asks about team, social activities | Asks about work, tools |
|
|
70
|
+
|
|
71
|
+
**Record:**
|
|
72
|
+
- Position: High / Low / Normative
|
|
73
|
+
- Confidence: High / Medium / Low
|
|
74
|
+
- Key quotes (2-3 examples)
|
|
75
|
+
|
|
76
|
+
**Step 5: Analyze C (Pace) Signals**
|
|
77
|
+
|
|
78
|
+
Search transcript for:
|
|
79
|
+
|
|
80
|
+
| Look For | High C | Low C |
|
|
81
|
+
|----------|--------|-------|
|
|
82
|
+
| Response speed | Pauses, thinks before answering | Rapid responses |
|
|
83
|
+
| Structure | Methodical, sequential | Topic-jumps, tangents |
|
|
84
|
+
| Ambiguity | Asks for clarification | Comfortable with unknowns |
|
|
85
|
+
| Change | Prefers stability | Thrives with pivots |
|
|
86
|
+
| Detail | One topic at a time | Multi-threads |
|
|
87
|
+
|
|
88
|
+
**Record:**
|
|
89
|
+
- Position: High / Low / Normative
|
|
90
|
+
- Confidence: High / Medium / Low
|
|
91
|
+
- Key quotes (2-3 examples)
|
|
92
|
+
|
|
93
|
+
**Step 6: Analyze D (Conformity) Signals**
|
|
94
|
+
|
|
95
|
+
Search transcript for:
|
|
96
|
+
|
|
97
|
+
| Look For | High D | Low D |
|
|
98
|
+
|----------|--------|-------|
|
|
99
|
+
| Precision | Specific numbers, dates | Approximations, ranges |
|
|
100
|
+
| Process | References rules, best practices | Describes creative approaches |
|
|
101
|
+
| Answers | Structured, follows question format | Free-flowing, interpretive |
|
|
102
|
+
| Quality | Mentions checking work, standards | Mentions outcomes, results |
|
|
103
|
+
| Flexibility | Follows structure | Challenges premises |
|
|
104
|
+
|
|
105
|
+
**Record:**
|
|
106
|
+
- Position: High / Low / Normative
|
|
107
|
+
- Confidence: High / Medium / Low
|
|
108
|
+
- Key quotes (2-3 examples)
|
|
109
|
+
|
|
110
|
+
**Step 7: Analyze L (Logic) - Absolute Scale**
|
|
111
|
+
|
|
112
|
+
Search transcript for:
|
|
113
|
+
|
|
114
|
+
| Look For | High L (8-10) | Low L (0-2) |
|
|
115
|
+
|----------|---------------|-------------|
|
|
116
|
+
| Framing | Data-driven, analytical | Values-driven, emotional |
|
|
117
|
+
| Language | "The numbers showed..." | "It felt right..." |
|
|
118
|
+
| Difficult topics | Emotion-neutral | Empathetic, emotional |
|
|
119
|
+
| Decision-making | Evidence-based | Intuition-based |
|
|
120
|
+
|
|
121
|
+
**Record:**
|
|
122
|
+
- Score estimate: 0-10
|
|
123
|
+
- Confidence: High / Medium / Low
|
|
124
|
+
- Key quotes (1-2 examples)
|
|
125
|
+
|
|
126
|
+
**Step 8: Analyze I (Ingenuity) - Absolute Scale**
|
|
127
|
+
|
|
128
|
+
Search transcript for:
|
|
129
|
+
|
|
130
|
+
| Look For | High I (7-10) | Low I (0-2) |
|
|
131
|
+
|----------|---------------|-------------|
|
|
132
|
+
| Problem-solving | Novel approaches | Proven methods |
|
|
133
|
+
| Assumptions | Questions, challenges | Accepts, follows |
|
|
134
|
+
| Examples | Original, creative | Standard, textbook |
|
|
135
|
+
| Routine | Mentions boredom | Describes comfort |
|
|
136
|
+
|
|
137
|
+
**Record:**
|
|
138
|
+
- Score estimate: 0-10
|
|
139
|
+
- Confidence: High / Medium / Low
|
|
140
|
+
- Key quotes (1-2 examples)
|
|
141
|
+
|
|
142
|
+
**Step 9: Identify Pattern**
|
|
143
|
+
|
|
144
|
+
Based on trait positions, identify likely pattern:
|
|
145
|
+
|
|
146
|
+
Cross-reference with `references/patterns-archetypes.md`:
|
|
147
|
+
|
|
148
|
+
| If you see... | Likely pattern |
|
|
149
|
+
|---------------|----------------|
|
|
150
|
+
| High A, Low B, Low C, Low D | Architect/Visionary |
|
|
151
|
+
| High A, High B, Low C | Rainmaker/Persuader |
|
|
152
|
+
| Low A, Low B, High C, High D | Scholar/Specialist |
|
|
153
|
+
| Low A, High B, High C | Accommodator |
|
|
154
|
+
| Low A, Low B, Low C, High D | Technical Expert |
|
|
155
|
+
|
|
156
|
+
**Only identify pattern if confidence is sufficient** - if traits are unclear, note "insufficient data for pattern identification."
|
|
157
|
+
|
|
158
|
+
**Step 10: Flag Uncertainty Areas**
|
|
159
|
+
|
|
160
|
+
Document where evidence is weak:
|
|
161
|
+
- Traits with only 1-2 data points
|
|
162
|
+
- Traits that showed inconsistent signals
|
|
163
|
+
- Topics that weren't covered in interview
|
|
164
|
+
- Signs of "interview mode" performance
|
|
165
|
+
|
|
166
|
+
**Step 11: Generate Predicted Profile**
|
|
167
|
+
|
|
168
|
+
Output using this structure:
|
|
169
|
+
|
|
170
|
+
```markdown
|
|
171
|
+
## Predicted Culture Index Profile: [Candidate Name]
|
|
172
|
+
|
|
173
|
+
**Analysis Date:** [Date]
|
|
174
|
+
**Transcript Source:** [Interview type, duration, interviewers]
|
|
175
|
+
**Overall Confidence:** [High/Medium/Low]
|
|
176
|
+
|
|
177
|
+
### Trait Predictions
|
|
178
|
+
|
|
179
|
+
| Trait | Predicted | Confidence | Evidence |
|
|
180
|
+
|-------|-----------|------------|----------|
|
|
181
|
+
| A (Autonomy) | [High/Low/Norm] | [H/M/L] | "[Quote]" |
|
|
182
|
+
| B (Social) | [High/Low/Norm] | [H/M/L] | "[Quote]" |
|
|
183
|
+
| C (Pace) | [High/Low/Norm] | [H/M/L] | "[Quote]" |
|
|
184
|
+
| D (Conformity) | [High/Low/Norm] | [H/M/L] | "[Quote]" |
|
|
185
|
+
| L (Logic) | [0-10] | [H/M/L] | "[Quote]" |
|
|
186
|
+
| I (Ingenuity) | [0-10] | [H/M/L] | "[Quote]" |
|
|
187
|
+
|
|
188
|
+
### Predicted Pattern
|
|
189
|
+
**[Pattern Name]** (if identifiable)
|
|
190
|
+
|
|
191
|
+
[1-2 sentence description of what this pattern means]
|
|
192
|
+
|
|
193
|
+
### Strongest Signals
|
|
194
|
+
1. [Most clear trait signal with quote]
|
|
195
|
+
2. [Second clearest signal with quote]
|
|
196
|
+
|
|
197
|
+
### Uncertainty Areas
|
|
198
|
+
- [Trait/area where more data needed]
|
|
199
|
+
- [Trait/area where signals were mixed]
|
|
200
|
+
|
|
201
|
+
### Interview Context Notes
|
|
202
|
+
- [Any factors that may have affected behavior]
|
|
203
|
+
- [Signs of interview performance mode]
|
|
204
|
+
|
|
205
|
+
### Caveats
|
|
206
|
+
- This is a prediction based on interview behavior, not a CI survey result
|
|
207
|
+
- Interview stress may affect natural behavior patterns
|
|
208
|
+
- Actual CI survey will be administered after offer acceptance
|
|
209
|
+
- Use for preliminary assessment only - do not treat as definitive
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
</process>
|
|
213
|
+
|
|
214
|
+
<verification>
|
|
215
|
+
|
|
216
|
+
Before finalizing prediction:
|
|
217
|
+
|
|
218
|
+
1. **Did I cite specific quotes?** Every trait prediction needs evidence
|
|
219
|
+
2. **Did I note confidence levels?** Every trait needs H/M/L confidence
|
|
220
|
+
3. **Did I flag uncertainties?** Where is evidence weak?
|
|
221
|
+
4. **Did I include caveats?** Predictions are not diagnoses
|
|
222
|
+
5. **Did I avoid over-confidence?** Especially for low-data traits
|
|
223
|
+
|
|
224
|
+
</verification>
|
|
225
|
+
|
|
226
|
+
<anti_patterns>
|
|
227
|
+
|
|
228
|
+
Avoid these prediction mistakes:
|
|
229
|
+
|
|
230
|
+
- **Over-interpreting single quotes**: One example isn't a pattern
|
|
231
|
+
- **Ignoring interview context**: Stress affects behavior
|
|
232
|
+
- **Treating predictions as definitive**: This is hypothesis, not diagnosis
|
|
233
|
+
- **Skipping low-confidence traits**: Better to say "uncertain" than guess
|
|
234
|
+
- **Assuming consistency**: Interview behavior may differ from daily behavior
|
|
235
|
+
- **Forgetting to cite evidence**: Every claim needs a quote
|
|
236
|
+
|
|
237
|
+
</anti_patterns>
|
|
238
|
+
|
|
239
|
+
<success_criteria>
|
|
240
|
+
|
|
241
|
+
Transcript analysis is complete when:
|
|
242
|
+
- [ ] All 6 traits analyzed with position/score estimates
|
|
243
|
+
- [ ] Each trait has confidence level (H/M/L)
|
|
244
|
+
- [ ] Each trait has supporting quotes from transcript
|
|
245
|
+
- [ ] Pattern identified (if sufficient confidence)
|
|
246
|
+
- [ ] Uncertainty areas documented
|
|
247
|
+
- [ ] Caveats clearly stated
|
|
248
|
+
- [ ] Output follows standard format
|
|
249
|
+
|
|
250
|
+
</success_criteria>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "differential-review",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Security-focused differential review of code changes with git history analysis and blast radius estimation",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Omar Inuwa",
|
|
7
|
+
"email": "opensource@trailofbits.com",
|
|
8
|
+
"url": "https://github.com/trailofbits"
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# Differential Review
|
|
2
|
+
|
|
3
|
+
Security-focused differential review of code changes with git history analysis and blast radius estimation.
|
|
4
|
+
|
|
5
|
+
**Author:** Omar Inuwa
|
|
6
|
+
|
|
7
|
+
## When to Use
|
|
8
|
+
|
|
9
|
+
Use this skill when you need to:
|
|
10
|
+
- Review PRs, commits, or diffs for security vulnerabilities
|
|
11
|
+
- Detect security regressions (re-introduced vulnerabilities)
|
|
12
|
+
- Analyze the blast radius of code changes
|
|
13
|
+
- Check test coverage gaps for modified code
|
|
14
|
+
|
|
15
|
+
## What It Does
|
|
16
|
+
|
|
17
|
+
This skill performs comprehensive security review of code changes:
|
|
18
|
+
|
|
19
|
+
- **Risk-First Analysis** - Prioritizes auth, crypto, value transfer, external calls
|
|
20
|
+
- **Git History Analysis** - Uses blame to understand why code existed and detect regressions
|
|
21
|
+
- **Blast Radius Calculation** - Quantifies impact by counting callers
|
|
22
|
+
- **Test Coverage Gaps** - Identifies untested changes
|
|
23
|
+
- **Adaptive Depth** - Scales analysis based on codebase size (small/medium/large)
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
/plugin install trailofbits/skills/plugins/differential-review
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Documentation Structure
|
|
32
|
+
|
|
33
|
+
This skill uses a **modular documentation architecture** for token efficiency and progressive disclosure:
|
|
34
|
+
|
|
35
|
+
### Core Entry Point
|
|
36
|
+
- **[SKILL.md](skills/differential-review/SKILL.md)** - Main entry point (217 lines)
|
|
37
|
+
- Quick reference tables for triage
|
|
38
|
+
- Decision tree routing to detailed docs
|
|
39
|
+
- Quality checklist and red flags
|
|
40
|
+
- Integration with other skills
|
|
41
|
+
|
|
42
|
+
### Supporting Documentation
|
|
43
|
+
- **[methodology.md](skills/differential-review/methodology.md)** - Detailed phase-by-phase workflow (~200 lines)
|
|
44
|
+
- Pre-Analysis: Baseline context building
|
|
45
|
+
- Phase 0: Intake & Triage
|
|
46
|
+
- Phase 1: Changed Code Analysis
|
|
47
|
+
- Phase 2: Test Coverage Analysis
|
|
48
|
+
- Phase 3: Blast Radius Analysis
|
|
49
|
+
- Phase 4: Deep Context Analysis
|
|
50
|
+
|
|
51
|
+
- **[adversarial.md](skills/differential-review/adversarial.md)** - Attacker modeling and exploit scenarios (~150 lines)
|
|
52
|
+
- Phase 5: Adversarial Vulnerability Analysis
|
|
53
|
+
- Attacker model definition (WHO/ACCESS/INTERFACE)
|
|
54
|
+
- Exploitability rating framework
|
|
55
|
+
- Complete exploit scenario templates
|
|
56
|
+
|
|
57
|
+
- **[reporting.md](skills/differential-review/reporting.md)** - Report structure and formatting (~120 lines)
|
|
58
|
+
- Phase 6: Report Generation
|
|
59
|
+
- 9-section report template
|
|
60
|
+
- Formatting guidelines and conventions
|
|
61
|
+
- File naming and notification templates
|
|
62
|
+
|
|
63
|
+
- **[patterns.md](skills/differential-review/patterns.md)** - Common vulnerability patterns (~80 lines)
|
|
64
|
+
- Security regressions detection
|
|
65
|
+
- Reentrancy, access control, overflow patterns
|
|
66
|
+
- Quick detection bash commands
|
|
67
|
+
|
|
68
|
+
### Benefits of This Structure
|
|
69
|
+
- **Token Efficient** - Load only the documentation you need
|
|
70
|
+
- **Progressive Disclosure** - Quick reference for triage, detailed docs for deep analysis
|
|
71
|
+
- **Maintainable** - Each concern separated into its own file
|
|
72
|
+
- **Navigable** - Decision tree routes you to the right document
|
|
73
|
+
|
|
74
|
+
## Workflow
|
|
75
|
+
|
|
76
|
+
The complete workflow spans Pre-Analysis + Phases 0-6:
|
|
77
|
+
|
|
78
|
+
1. **Pre-Analysis** - Build baseline context with `audit-context-building` skill (if available)
|
|
79
|
+
2. **Phase 0: Intake** - Extract changes, assess size, risk-score files
|
|
80
|
+
3. **Phase 1: Changed Code** - Analyze diffs, git blame, check for regressions
|
|
81
|
+
4. **Phase 2: Test Coverage** - Identify coverage gaps
|
|
82
|
+
5. **Phase 3: Blast Radius** - Calculate impact of changes
|
|
83
|
+
6. **Phase 4: Deep Context** - Five Whys root cause analysis
|
|
84
|
+
7. **Phase 5: Adversarial Analysis** - Hunt vulnerabilities with attacker model
|
|
85
|
+
8. **Phase 6: Report** - Generate comprehensive markdown report
|
|
86
|
+
|
|
87
|
+
**Navigation:** Use the decision tree in SKILL.md to jump directly to the phase you need.
|
|
88
|
+
|
|
89
|
+
## Output
|
|
90
|
+
|
|
91
|
+
Generates a markdown report with:
|
|
92
|
+
- Executive summary with severity distribution
|
|
93
|
+
- Critical findings with attack scenarios and PoCs
|
|
94
|
+
- Test coverage analysis
|
|
95
|
+
- Blast radius analysis
|
|
96
|
+
- Historical context and regression risks
|
|
97
|
+
- Actionable recommendations
|
|
98
|
+
|
|
99
|
+
## Example Usage
|
|
100
|
+
|
|
101
|
+
```
|
|
102
|
+
Review the security implications of this PR:
|
|
103
|
+
git diff main..feature/auth-changes
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
## Related Skills
|
|
107
|
+
|
|
108
|
+
- `context-building` - Used for baseline context analysis
|
|
109
|
+
- `issue-writer` - Transform findings into formal audit reports
|