@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,293 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: interpreting-culture-index
|
|
3
|
+
description: Use when interpreting Culture Index surveys, CI profiles, behavioral assessments, or personality data. Supports individual interpretation, team composition (gas/brake/glue), burnout detection, profile comparison, hiring profiles, manager coaching, interview transcript analysis for trait prediction, candidate debrief, onboarding planning, and conflict mediation. Handles PDF vision or JSON input.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<essential_principles>
|
|
7
|
+
|
|
8
|
+
**Culture Index measures behavioral traits, not intelligence or skills. There is no "good" or "bad" profile.**
|
|
9
|
+
|
|
10
|
+
<principle name="never-compare-absolutes">
|
|
11
|
+
**Never compare absolute trait values between people.**
|
|
12
|
+
|
|
13
|
+
The 0-10 scale is just a ruler. What matters is **distance from the red arrow** (population mean at 50th percentile). The arrow position varies between surveys based on EU.
|
|
14
|
+
|
|
15
|
+
**Why the arrow moves:** Higher EU scores cause the arrow to plot further right; lower EU causes it to plot further left. This does not affect validity—we always measure distance from wherever the arrow lands.
|
|
16
|
+
|
|
17
|
+
**Wrong**: "Dan has higher autonomy than Jim because his A is 8 vs 5"
|
|
18
|
+
**Right**: "Dan is +3 centiles from his arrow; Jim is +1 from his arrow"
|
|
19
|
+
|
|
20
|
+
Always ask: Where is the arrow, and how far is the dot from it?
|
|
21
|
+
</principle>
|
|
22
|
+
|
|
23
|
+
<principle name="survey-vs-job">
|
|
24
|
+
**Survey = who you ARE. Job = who you're TRYING TO BE.**
|
|
25
|
+
|
|
26
|
+
> **"You can't send a duck to Eagle school."** Traits are hardwired—you can only modify behaviors temporarily, at the cost of energy.
|
|
27
|
+
|
|
28
|
+
- **Top graph (Survey Traits)**: Hardwired by age 12-16. Does not change. Writing with your dominant hand.
|
|
29
|
+
- **Bottom graph (Job Behaviors)**: Adaptive behavior at work. Can change. Writing with your non-dominant hand.
|
|
30
|
+
|
|
31
|
+
Large differences between graphs indicate behavior modification, which drains energy and causes burnout if sustained 3-6+ months.
|
|
32
|
+
</principle>
|
|
33
|
+
|
|
34
|
+
<principle name="distance-interpretation">
|
|
35
|
+
**Distance from arrow determines trait strength.**
|
|
36
|
+
|
|
37
|
+
| Distance | Label | Percentile | Interpretation |
|
|
38
|
+
|----------|-------|------------|----------------|
|
|
39
|
+
| On arrow | Normative | 50th | Flexible, situational |
|
|
40
|
+
| ±1 centile | Tendency | ~67th | Easier to modify |
|
|
41
|
+
| ±2 centiles | Pronounced | ~84th | Noticeable difference |
|
|
42
|
+
| ±4+ centiles | Extreme | ~98th | Hardwired, compulsive, predictable |
|
|
43
|
+
|
|
44
|
+
**Key insight:** Every 2 centiles of distance = 1 standard deviation.
|
|
45
|
+
|
|
46
|
+
Extreme traits drive extreme results but are harder to modify and less relatable to average people.
|
|
47
|
+
</principle>
|
|
48
|
+
|
|
49
|
+
<principle name="l-and-i-exception">
|
|
50
|
+
**L (Logic) and I (Ingenuity) use absolute values.**
|
|
51
|
+
|
|
52
|
+
Unlike A, B, C, D, you CAN compare L and I scores directly between people:
|
|
53
|
+
- Logic 8 means "High Logic" regardless of arrow position
|
|
54
|
+
- Ingenuity 2 means "Low Ingenuity" for anyone
|
|
55
|
+
|
|
56
|
+
Only these two traits break the "no absolute comparison" rule.
|
|
57
|
+
</principle>
|
|
58
|
+
|
|
59
|
+
</essential_principles>
|
|
60
|
+
|
|
61
|
+
<input_formats>
|
|
62
|
+
|
|
63
|
+
**JSON (Use if available)**
|
|
64
|
+
|
|
65
|
+
If JSON data is already extracted, use it directly:
|
|
66
|
+
```python
|
|
67
|
+
import json
|
|
68
|
+
with open("person_name.json") as f:
|
|
69
|
+
profile = json.load(f)
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
JSON format:
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"name": "Person Name",
|
|
76
|
+
"archetype": "Architect",
|
|
77
|
+
"survey": {
|
|
78
|
+
"eu": 21,
|
|
79
|
+
"arrow": 2.3,
|
|
80
|
+
"a": [5, 2.7],
|
|
81
|
+
"b": [0, -2.3],
|
|
82
|
+
"c": [1, -1.3],
|
|
83
|
+
"d": [3, 0.7],
|
|
84
|
+
"logic": [5, null],
|
|
85
|
+
"ingenuity": [2, null]
|
|
86
|
+
},
|
|
87
|
+
"job": { "..." : "same structure as survey" },
|
|
88
|
+
"analysis": {
|
|
89
|
+
"energy_utilization": 148,
|
|
90
|
+
"status": "stress"
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Note: Trait values are `[absolute, relative_to_arrow]` tuples. Use the relative value for interpretation.
|
|
96
|
+
|
|
97
|
+
Check same directory as PDF for matching `.json` file, or ask user if they have extracted JSON.
|
|
98
|
+
|
|
99
|
+
**PDF Input (MUST EXTRACT FIRST)**
|
|
100
|
+
|
|
101
|
+
⚠️ **NEVER use visual estimation for trait values.** Visual estimation has 20-30% error rate.
|
|
102
|
+
|
|
103
|
+
When given a PDF:
|
|
104
|
+
1. Check if JSON already exists (same directory as PDF, or ask user)
|
|
105
|
+
2. If not, run extraction with verification:
|
|
106
|
+
```bash
|
|
107
|
+
uv run {baseDir}/scripts/extract_pdf.py --verify /path/to/file.pdf [output.json]
|
|
108
|
+
```
|
|
109
|
+
3. Visually confirm the verification summary matches the PDF
|
|
110
|
+
4. Use the extracted JSON for interpretation
|
|
111
|
+
|
|
112
|
+
**If uv is not installed:** Stop and instruct user to install it (`brew install uv` or `pip install uv`). Do NOT fall back to vision.
|
|
113
|
+
|
|
114
|
+
**PDF Vision (Reference Only)**
|
|
115
|
+
|
|
116
|
+
Vision may be used ONLY to verify extracted values look reasonable, NOT to extract trait scores.
|
|
117
|
+
|
|
118
|
+
</input_formats>
|
|
119
|
+
|
|
120
|
+
<intake>
|
|
121
|
+
|
|
122
|
+
**Step 0: Do you have JSON or PDF?**
|
|
123
|
+
|
|
124
|
+
1. **If JSON provided or found:** Use it directly (skip extraction)
|
|
125
|
+
- Check same directory as PDF for `.json` file with matching name
|
|
126
|
+
- Check if user provided JSON path
|
|
127
|
+
2. **If only PDF:** Run extraction script with `--verify` flag
|
|
128
|
+
```bash
|
|
129
|
+
uv run {baseDir}/scripts/extract_pdf.py --verify /path/to/file.pdf [output.json]
|
|
130
|
+
```
|
|
131
|
+
3. **If extraction fails:** Report error, do NOT fall back to vision
|
|
132
|
+
|
|
133
|
+
**Step 1: What data do you have?**
|
|
134
|
+
|
|
135
|
+
- **CI Survey JSON** → Proceed to Step 2
|
|
136
|
+
- **CI Survey PDF** → Extract first (Step 0), then proceed to Step 2
|
|
137
|
+
- **Interview transcript only** → Go to option 8 (predict traits from interview)
|
|
138
|
+
- **No data yet** → "Please provide Culture Index profile (PDF or JSON) or interview transcript"
|
|
139
|
+
|
|
140
|
+
**Step 2: What would you like to do?**
|
|
141
|
+
|
|
142
|
+
**Profile Analysis:**
|
|
143
|
+
1. **Interpret an individual profile** - Understand one person's traits, strengths, and challenges
|
|
144
|
+
2. **Analyze team composition** - Assess gas/brake/glue balance, identify gaps
|
|
145
|
+
3. **Detect burnout signals** - Compare Survey vs Job, flag stress/frustration
|
|
146
|
+
4. **Compare multiple profiles** - Understand compatibility, collaboration dynamics
|
|
147
|
+
5. **Get motivator recommendations** - Learn how to engage and retain someone
|
|
148
|
+
|
|
149
|
+
**Hiring & Candidates:**
|
|
150
|
+
6. **Define hiring profile** - Determine ideal CI traits for a role
|
|
151
|
+
7. **Coach manager on direct report** - Adjust management style based on both profiles
|
|
152
|
+
8. **Predict traits from interview** - Analyze interview transcript to estimate CI traits
|
|
153
|
+
9. **Interview debrief** - Assess candidate fit based on predicted traits
|
|
154
|
+
|
|
155
|
+
**Team Development:**
|
|
156
|
+
10. **Plan onboarding** - Design first 90 days based on new hire and team profiles
|
|
157
|
+
11. **Mediate conflict** - Understand friction between two people using their profiles
|
|
158
|
+
|
|
159
|
+
**Provide the profile data (JSON or PDF) and select an option, or describe what you need.**
|
|
160
|
+
|
|
161
|
+
</intake>
|
|
162
|
+
|
|
163
|
+
<routing>
|
|
164
|
+
|
|
165
|
+
| Response | Workflow |
|
|
166
|
+
|----------|----------|
|
|
167
|
+
| "extract", "parse pdf", "convert pdf", "get json from pdf" | `workflows/extract-from-pdf.md` |
|
|
168
|
+
| 1, "individual", "interpret", "understand", "analyze one", "single profile" | `workflows/interpret-individual.md` |
|
|
169
|
+
| 2, "team", "composition", "gaps", "balance", "gas brake glue" | `workflows/analyze-team.md` |
|
|
170
|
+
| 3, "burnout", "stress", "frustration", "survey vs job", "energy", "flight risk" | `workflows/detect-burnout.md` |
|
|
171
|
+
| 4, "compare", "compatibility", "collaboration", "multiple", "two profiles" | `workflows/compare-profiles.md` |
|
|
172
|
+
| 5, "motivate", "engage", "retain", "communicate" | Read `references/motivators.md` directly |
|
|
173
|
+
| 6, "hire", "hiring profile", "role profile", "recruit", "what profile for" | `workflows/define-hiring-profile.md` |
|
|
174
|
+
| 7, "manage", "coach", "1:1", "direct report", "manager" | `workflows/coach-manager.md` |
|
|
175
|
+
| 8, "transcript", "interview", "predict traits", "guess", "estimate", "recording" | `workflows/predict-from-interview.md` |
|
|
176
|
+
| 9, "debrief", "should we hire", "candidate fit", "proceed", "offer" | `workflows/interview-debrief.md` |
|
|
177
|
+
| 10, "onboard", "new hire", "integrate", "starting", "first 90 days" | `workflows/plan-onboarding.md` |
|
|
178
|
+
| 11, "conflict", "friction", "mediate", "not working together", "clash" | `workflows/mediate-conflict.md` |
|
|
179
|
+
| "conversation starters", "how to talk to", "engage with" | Read `references/conversation-starters.md` directly |
|
|
180
|
+
|
|
181
|
+
**After reading the workflow, follow it exactly.**
|
|
182
|
+
|
|
183
|
+
</routing>
|
|
184
|
+
|
|
185
|
+
<verification_loop>
|
|
186
|
+
|
|
187
|
+
After every interpretation, verify:
|
|
188
|
+
|
|
189
|
+
1. **Did you use relative positions?** Never stated "A is 8" without context
|
|
190
|
+
2. **Did you reference the arrow?** All trait interpretations relative to arrow
|
|
191
|
+
3. **Did you compare Survey vs Job?** Identified any behavior modification
|
|
192
|
+
4. **Did you avoid value judgments?** No traits called "good" or "bad"
|
|
193
|
+
5. **Did you check EU?** Energy utilization calculated if both graphs present
|
|
194
|
+
|
|
195
|
+
Report to user:
|
|
196
|
+
- "Interpretation complete"
|
|
197
|
+
- Key findings (2-3 bullet points)
|
|
198
|
+
- Recommended actions
|
|
199
|
+
|
|
200
|
+
</verification_loop>
|
|
201
|
+
|
|
202
|
+
<reference_index>
|
|
203
|
+
|
|
204
|
+
**Domain Knowledge** (in `references/`):
|
|
205
|
+
|
|
206
|
+
**Primary Traits:**
|
|
207
|
+
- `primary-traits.md` - A (Autonomy), B (Social), C (Pace), D (Conformity)
|
|
208
|
+
|
|
209
|
+
**Secondary Traits:**
|
|
210
|
+
- `secondary-traits.md` - EU (Energy Units), L (Logic), I (Ingenuity)
|
|
211
|
+
|
|
212
|
+
**Patterns:**
|
|
213
|
+
- `patterns-archetypes.md` - Behavioral patterns, trait combinations, archetypes
|
|
214
|
+
|
|
215
|
+
**Application:**
|
|
216
|
+
- `motivators.md` - How to motivate each trait type
|
|
217
|
+
- `team-composition.md` - Gas, brake, glue framework
|
|
218
|
+
- `anti-patterns.md` - Common interpretation mistakes
|
|
219
|
+
- `conversation-starters.md` - How to engage each pattern and trait type
|
|
220
|
+
- `interview-trait-signals.md` - Signals for predicting traits from interviews
|
|
221
|
+
|
|
222
|
+
</reference_index>
|
|
223
|
+
|
|
224
|
+
<workflows_index>
|
|
225
|
+
|
|
226
|
+
**Workflows** (in `workflows/`):
|
|
227
|
+
|
|
228
|
+
| File | Purpose |
|
|
229
|
+
|------|---------|
|
|
230
|
+
| `extract-from-pdf.md` | Extract profile data from Culture Index PDF to JSON format |
|
|
231
|
+
| `interpret-individual.md` | Analyze single profile, identify archetype, summarize strengths/challenges |
|
|
232
|
+
| `analyze-team.md` | Assess team balance (gas/brake/glue), identify gaps, recommend hires |
|
|
233
|
+
| `detect-burnout.md` | Compare Survey vs Job, calculate EU utilization, flag risk signals |
|
|
234
|
+
| `compare-profiles.md` | Compare multiple profiles, assess compatibility, collaboration dynamics |
|
|
235
|
+
| `define-hiring-profile.md` | Define ideal CI traits for a role, identify acceptable patterns and red flags |
|
|
236
|
+
| `coach-manager.md` | Help managers adjust their style for specific direct reports |
|
|
237
|
+
| `predict-from-interview.md` | Analyze interview transcripts to predict CI traits before survey |
|
|
238
|
+
| `interview-debrief.md` | Assess candidate fit using predicted traits from transcript analysis |
|
|
239
|
+
| `plan-onboarding.md` | Design first 90 days based on new hire profile and team composition |
|
|
240
|
+
| `mediate-conflict.md` | Understand and address friction between team members using their profiles |
|
|
241
|
+
|
|
242
|
+
</workflows_index>
|
|
243
|
+
|
|
244
|
+
<quick_reference>
|
|
245
|
+
|
|
246
|
+
**Trait Colors:**
|
|
247
|
+
| Trait | Color | Measures |
|
|
248
|
+
|-------|-------|----------|
|
|
249
|
+
| A | Maroon | Autonomy, initiative, self-confidence |
|
|
250
|
+
| B | Yellow | Social ability, need for interaction |
|
|
251
|
+
| C | Blue | Pace/Patience, urgency level |
|
|
252
|
+
| D | Green | Conformity, attention to detail |
|
|
253
|
+
| L | Purple | Logic, emotional processing |
|
|
254
|
+
| I | Cyan | Ingenuity, inventiveness |
|
|
255
|
+
|
|
256
|
+
**Energy Utilization Formula:**
|
|
257
|
+
```
|
|
258
|
+
Utilization = (Job EU / Survey EU) × 100
|
|
259
|
+
|
|
260
|
+
70-130% = Healthy
|
|
261
|
+
>130% = STRESS (burnout risk)
|
|
262
|
+
<70% = FRUSTRATION (flight risk)
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
**Gas/Brake/Glue:**
|
|
266
|
+
| Role | Trait | Function |
|
|
267
|
+
|------|-------|----------|
|
|
268
|
+
| Gas | High A | Growth, risk-taking, driving results |
|
|
269
|
+
| Brake | High D | Quality control, risk aversion, finishing |
|
|
270
|
+
| Glue | High B | Relationships, morale, culture |
|
|
271
|
+
|
|
272
|
+
**Score Precision:**
|
|
273
|
+
| Value | Precision | Example |
|
|
274
|
+
|-------|-----------|---------|
|
|
275
|
+
| Traits (A,B,C,D,L,I) | Integer 0-10 | 0, 1, 2, ... 10 |
|
|
276
|
+
| Arrow position | Tenths | 0.4, 2.2, 3.8 |
|
|
277
|
+
| Energy Units (EU) | Integer | 11, 31, 45 |
|
|
278
|
+
|
|
279
|
+
</quick_reference>
|
|
280
|
+
|
|
281
|
+
<success_criteria>
|
|
282
|
+
|
|
283
|
+
A well-interpreted Culture Index profile:
|
|
284
|
+
- Uses relative positions (distance from arrow), never absolute values alone
|
|
285
|
+
- Identifies the archetype/pattern correctly
|
|
286
|
+
- Highlights 2-3 key strengths based on leading traits
|
|
287
|
+
- Notes 2-3 challenges or development areas
|
|
288
|
+
- Compares Survey vs Job if both are available
|
|
289
|
+
- Provides actionable recommendations
|
|
290
|
+
- Avoids value judgments ("good"/"bad")
|
|
291
|
+
- Acknowledges Culture Index is one data point, not a complete picture
|
|
292
|
+
|
|
293
|
+
</success_criteria>
|
package/skills/security-culture-index/skills/interpreting-culture-index/references/anti-patterns.md
ADDED
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
<overview>
|
|
2
|
+
|
|
3
|
+
Common mistakes when interpreting Culture Index profiles. Avoiding these errors is as important as understanding the methodology itself.
|
|
4
|
+
|
|
5
|
+
</overview>
|
|
6
|
+
|
|
7
|
+
<interpretation_mistakes>
|
|
8
|
+
|
|
9
|
+
<mistake name="comparing-absolutes">
|
|
10
|
+
|
|
11
|
+
**Comparing absolute trait values between people**
|
|
12
|
+
|
|
13
|
+
**Wrong:** "Dan has higher autonomy than Jim because his A is 8 vs 5"
|
|
14
|
+
|
|
15
|
+
**Right:** "Dan is +3 centiles from his arrow; Jim is +1 from his arrow"
|
|
16
|
+
|
|
17
|
+
**Why it's wrong:** The arrow position varies between surveys based on EU. An 8 with an arrow at 6 is only +2 from norm. A 5 with an arrow at 2 is +3 from norm.
|
|
18
|
+
|
|
19
|
+
**Only exception:** L and I use absolute values and CAN be compared directly.
|
|
20
|
+
|
|
21
|
+
</mistake>
|
|
22
|
+
|
|
23
|
+
<mistake name="ignoring-arrow">
|
|
24
|
+
|
|
25
|
+
**Ignoring the red arrow position**
|
|
26
|
+
|
|
27
|
+
The arrow is the population mean (50th percentile). All interpretation must be relative to it.
|
|
28
|
+
|
|
29
|
+
**Wrong:** "This person has low B (score of 3)"
|
|
30
|
+
|
|
31
|
+
**Right:** "This person's B is 2 centiles left of their arrow, indicating pronounced introversion"
|
|
32
|
+
|
|
33
|
+
</mistake>
|
|
34
|
+
|
|
35
|
+
<mistake name="value-judgments">
|
|
36
|
+
|
|
37
|
+
**Treating traits as "good" or "bad"**
|
|
38
|
+
|
|
39
|
+
Culture Index measures behavioral traits, not value or capability.
|
|
40
|
+
|
|
41
|
+
**Wrong:**
|
|
42
|
+
- "High D is good because they're detail-oriented"
|
|
43
|
+
- "Low B is bad because they're not social"
|
|
44
|
+
|
|
45
|
+
**Right:**
|
|
46
|
+
- "High D indicates strong attention to detail - fits roles requiring precision"
|
|
47
|
+
- "Low B indicates preference for focused work - fits analytical roles"
|
|
48
|
+
|
|
49
|
+
There is no universally "good" profile. Fit depends on role, team, and context.
|
|
50
|
+
|
|
51
|
+
</mistake>
|
|
52
|
+
|
|
53
|
+
<mistake name="stale-data">
|
|
54
|
+
|
|
55
|
+
**Using outdated data (18+ months old)**
|
|
56
|
+
|
|
57
|
+
Job behaviors update as environment, leadership, or projects change. Stale data leads to wrong conclusions.
|
|
58
|
+
|
|
59
|
+
**Best practice:** Resurvey job behaviors every 6 months, especially after major role or leadership changes.
|
|
60
|
+
|
|
61
|
+
</mistake>
|
|
62
|
+
|
|
63
|
+
<mistake name="single-trait-focus">
|
|
64
|
+
|
|
65
|
+
**Over-indexing on a single trait**
|
|
66
|
+
|
|
67
|
+
The pattern (relationship between traits) matters more than any individual dot.
|
|
68
|
+
|
|
69
|
+
**Wrong:** "They have High A, so they're a leader"
|
|
70
|
+
|
|
71
|
+
**Right:** "High A combined with High D suggests they can build new systems. High A with Low D suggests they'll drive fast but may miss details."
|
|
72
|
+
|
|
73
|
+
</mistake>
|
|
74
|
+
|
|
75
|
+
<mistake name="ignoring-survey-vs-job">
|
|
76
|
+
|
|
77
|
+
**Not comparing Survey vs Job graphs**
|
|
78
|
+
|
|
79
|
+
Missing burnout signals by only looking at one graph.
|
|
80
|
+
|
|
81
|
+
**Always check:**
|
|
82
|
+
- Did the arrow move? (Stress/Frustration signal)
|
|
83
|
+
- Did any dots flip sides? (Polarizing shift - flight risk)
|
|
84
|
+
- What's the EU utilization? (>130% stress, <70% frustration)
|
|
85
|
+
|
|
86
|
+
</mistake>
|
|
87
|
+
|
|
88
|
+
<mistake name="confusing-traits-behaviors">
|
|
89
|
+
|
|
90
|
+
**Confusing traits with behaviors**
|
|
91
|
+
|
|
92
|
+
Survey (top) = hardwired traits (who you ARE)
|
|
93
|
+
Job (bottom) = adaptive behaviors (who you're TRYING TO BE)
|
|
94
|
+
|
|
95
|
+
Traits don't change. Behaviors can be modified temporarily - but at an energy cost.
|
|
96
|
+
|
|
97
|
+
**"You can't send a duck to Eagle school."** - You can train behaviors, not traits.
|
|
98
|
+
|
|
99
|
+
</mistake>
|
|
100
|
+
|
|
101
|
+
</interpretation_mistakes>
|
|
102
|
+
|
|
103
|
+
<application_mistakes>
|
|
104
|
+
|
|
105
|
+
<mistake name="seeking-homogeneity">
|
|
106
|
+
|
|
107
|
+
**Hiring for homogeneous teams**
|
|
108
|
+
|
|
109
|
+
Hiring people who match the manager's profile creates blind spots.
|
|
110
|
+
|
|
111
|
+
**Better approach:** Build diverse teams with complementary traits. Every team needs Gas (High A), Brake (High D), and Glue (High B) in appropriate proportions.
|
|
112
|
+
|
|
113
|
+
</mistake>
|
|
114
|
+
|
|
115
|
+
<mistake name="overloading-high-a">
|
|
116
|
+
|
|
117
|
+
**Overloading on High A's**
|
|
118
|
+
|
|
119
|
+
High A's are "the single hardest trait to employ." They work for "me, Inc." first.
|
|
120
|
+
|
|
121
|
+
Too many High A's = power struggles, lack of follow-through, no one to execute.
|
|
122
|
+
|
|
123
|
+
**You are only RENTING High A's** - they need a mutually beneficial partnership.
|
|
124
|
+
|
|
125
|
+
</mistake>
|
|
126
|
+
|
|
127
|
+
<mistake name="neglecting-brake">
|
|
128
|
+
|
|
129
|
+
**Neglecting the Brake (High D)**
|
|
130
|
+
|
|
131
|
+
Every team needs quality control, risk management, and follow-through.
|
|
132
|
+
|
|
133
|
+
Without Brake: Erosion, mistakes, lawsuits, quality issues, things start but never finish.
|
|
134
|
+
|
|
135
|
+
</mistake>
|
|
136
|
+
|
|
137
|
+
<mistake name="assuming-fit-permanent">
|
|
138
|
+
|
|
139
|
+
**Assuming job fit is permanent**
|
|
140
|
+
|
|
141
|
+
People's roles evolve. Business needs change. What fit yesterday may not fit tomorrow.
|
|
142
|
+
|
|
143
|
+
Regular check-ins (resurvey every 6 months) catch misalignment before it becomes burnout or turnover.
|
|
144
|
+
|
|
145
|
+
</mistake>
|
|
146
|
+
|
|
147
|
+
<mistake name="using-ci-alone">
|
|
148
|
+
|
|
149
|
+
**Using Culture Index as the only data point**
|
|
150
|
+
|
|
151
|
+
Culture Index is ONE tool among many. It measures behavioral traits, not:
|
|
152
|
+
- Skills or competencies
|
|
153
|
+
- Intelligence
|
|
154
|
+
- Experience
|
|
155
|
+
- Values
|
|
156
|
+
- Motivation
|
|
157
|
+
|
|
158
|
+
**Best practice:** Use CI alongside interviews, references, skills assessments, and performance data.
|
|
159
|
+
|
|
160
|
+
</mistake>
|
|
161
|
+
|
|
162
|
+
</application_mistakes>
|
|
163
|
+
|
|
164
|
+
<communication_mistakes>
|
|
165
|
+
|
|
166
|
+
<mistake name="sharing-raw-scores">
|
|
167
|
+
|
|
168
|
+
**Sharing raw scores without context**
|
|
169
|
+
|
|
170
|
+
Telling someone "Your A is 8" without explaining relative position is meaningless and potentially harmful.
|
|
171
|
+
|
|
172
|
+
**Always communicate:**
|
|
173
|
+
- Position relative to arrow
|
|
174
|
+
- What that means behaviorally
|
|
175
|
+
- Why it's neither good nor bad
|
|
176
|
+
- How it fits (or doesn't) with their role
|
|
177
|
+
|
|
178
|
+
</mistake>
|
|
179
|
+
|
|
180
|
+
<mistake name="labeling-people">
|
|
181
|
+
|
|
182
|
+
**Using CI to label or box people**
|
|
183
|
+
|
|
184
|
+
CI shows tendencies, not destiny.
|
|
185
|
+
|
|
186
|
+
**Wrong:** "You're a Persuader, so you should only do sales"
|
|
187
|
+
|
|
188
|
+
**Right:** "Your pattern shows strengths in influence and relationship building. How do you use those in your current role?"
|
|
189
|
+
|
|
190
|
+
</mistake>
|
|
191
|
+
|
|
192
|
+
<mistake name="public-comparison">
|
|
193
|
+
|
|
194
|
+
**Comparing profiles publicly**
|
|
195
|
+
|
|
196
|
+
Never compare individuals' profiles in group settings without their consent.
|
|
197
|
+
|
|
198
|
+
Discussing "Person A is more detail-oriented than Person B" creates hierarchy and judgment.
|
|
199
|
+
|
|
200
|
+
</mistake>
|
|
201
|
+
|
|
202
|
+
</communication_mistakes>
|
|
203
|
+
|
|
204
|
+
<red_flags>
|
|
205
|
+
|
|
206
|
+
**Signals that suggest deeper investigation:**
|
|
207
|
+
|
|
208
|
+
| Signal | What to Check |
|
|
209
|
+
|--------|---------------|
|
|
210
|
+
| EU 0-10 (avoidant response) | Was survey completed properly? Trust issues? |
|
|
211
|
+
| All dots on or near arrow | Chameleon pattern - less than 0.57% of population. Verify validity. |
|
|
212
|
+
| Job behaviors completely opposite of Survey | Imminent flight risk. What's causing this extreme modification? |
|
|
213
|
+
| EU utilization > 150% | Severe stress. Immediate conversation needed. |
|
|
214
|
+
| EU utilization < 50% | Severe disengagement. May have already mentally quit. |
|
|
215
|
+
| D raised significantly in Job behaviors | Most common unsustainable stress pattern. Why do they feel they need to be so much more perfectionist? |
|
|
216
|
+
|
|
217
|
+
</red_flags>
|
|
218
|
+
|
|
219
|
+
<checklist>
|
|
220
|
+
|
|
221
|
+
**Before finalizing any interpretation:**
|
|
222
|
+
|
|
223
|
+
- [ ] Did I use relative positions (distance from arrow)?
|
|
224
|
+
- [ ] Did I avoid calling any trait "good" or "bad"?
|
|
225
|
+
- [ ] Did I compare Survey vs Job if both available?
|
|
226
|
+
- [ ] Did I calculate EU utilization?
|
|
227
|
+
- [ ] Did I consider the full pattern, not just leading traits?
|
|
228
|
+
- [ ] Is my data current (less than 18 months old)?
|
|
229
|
+
- [ ] Did I note that CI is one data point among many?
|
|
230
|
+
|
|
231
|
+
</checklist>
|
|
232
|
+
|
|
233
|
+
<rationalization_table>
|
|
234
|
+
|
|
235
|
+
**Common excuses that indicate you're about to make a CI interpretation mistake:**
|
|
236
|
+
|
|
237
|
+
| Excuse | Reality |
|
|
238
|
+
|--------|---------|
|
|
239
|
+
| "Their A is higher so they're more autonomous" | Compare distance from arrow, not absolute values |
|
|
240
|
+
| "This is a bad profile for leadership" | No bad profiles - fit depends on role and context |
|
|
241
|
+
| "They need to change their C trait" | Survey traits are hardwired - change the environment instead |
|
|
242
|
+
| "Low B means they're not a team player" | Low B means they prefer focused work - they can still collaborate |
|
|
243
|
+
| "High D is always good for quality" | High D without other traits can mean paralysis and rigidity |
|
|
244
|
+
| "They should be more like their manager" | Different profiles bring complementary strengths |
|
|
245
|
+
| "This pattern can't do that job" | Patterns indicate tendencies, not hard limits |
|
|
246
|
+
| "Their EU is fine, the job is the problem" | EU tells you about energy, not about job design |
|
|
247
|
+
| "I remember their profile from last year" | Resurvey Job behaviors every 6 months - they change |
|
|
248
|
+
| "The arrow doesn't matter, just look at the dots" | The arrow IS the reference point - dots mean nothing without it |
|
|
249
|
+
| "L and I work the same as A, B, C, D" | L and I use absolute values, primary traits are relative |
|
|
250
|
+
| "Survey and Job will be the same" | Survey = hardwired, Job = adaptive. They often differ. |
|
|
251
|
+
| "High A means they're selfish" | High A means they're self-directed - not the same thing |
|
|
252
|
+
| "We need all High A's on this high-growth team" | You're renting High A's, and they'll clash with each other |
|
|
253
|
+
| "This hire looks good, skip the CI" | CI is one data point - use it WITH other assessments, not instead of |
|
|
254
|
+
|
|
255
|
+
</rationalization_table>
|