@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/references/motivators.md
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
<overview>
|
|
2
|
+
|
|
3
|
+
The simplest way to drive engagement and productivity is to find the leading dot among A, B, D (the three confidence traits) and install motivators for that trait consistently.
|
|
4
|
+
|
|
5
|
+
</overview>
|
|
6
|
+
|
|
7
|
+
<motivator_framework>
|
|
8
|
+
|
|
9
|
+
**Step 1: Find the leading dot** between A, B, and D (the three confidence traits)
|
|
10
|
+
**Step 2: Go to that trait's motivator box** (see below)
|
|
11
|
+
**Step 3: Install 3-4 of those motivators consistently**
|
|
12
|
+
|
|
13
|
+
**When dots are stacked** (three confidence traits close together): D always wins - start with D trait motivators first, then B, then A.
|
|
14
|
+
|
|
15
|
+
**Master level:** Hit motivators for all four primary dots. Takes 2-3 years of practice.
|
|
16
|
+
|
|
17
|
+
**Retention tip:** Expect to retain ~30% of workshop content initially. Quarterly team discussions with real-life examples help mobilize learning.
|
|
18
|
+
|
|
19
|
+
</motivator_framework>
|
|
20
|
+
|
|
21
|
+
<motivators_by_trait>
|
|
22
|
+
|
|
23
|
+
<high_a label="High Autonomy Motivators">
|
|
24
|
+
|
|
25
|
+
- **Variable compensation** - Bonus, equity, commission over fixed salary
|
|
26
|
+
- **Autonomy** - Freedom to decide how to achieve goals
|
|
27
|
+
- **ROI-focused communication** - Bullet points, not walls of text
|
|
28
|
+
- **Outcomes over process** - "Bake me a cake" not "here's the recipe"
|
|
29
|
+
- **Challenge** - Opportunities to compete and win
|
|
30
|
+
- **Buy-in through questions** - Let them "own" the idea
|
|
31
|
+
- **Respect their time** - Don't waste it with unnecessary meetings
|
|
32
|
+
|
|
33
|
+
**What doesn't work:** Micromanagement, detailed instructions, fixed salary only, consensus-driven decisions
|
|
34
|
+
|
|
35
|
+
</high_a>
|
|
36
|
+
|
|
37
|
+
<low_a label="Low Autonomy Motivators">
|
|
38
|
+
|
|
39
|
+
- **Specific praise** - "Great job on the Johnson proposal" not "Great job"
|
|
40
|
+
- **Consistent compensation** - Predictable over variable bonuses
|
|
41
|
+
- **Clear frameworks** - For novel decisions
|
|
42
|
+
- **Direction before action** - Don't expect self-initiation
|
|
43
|
+
- **Team recognition** - Acknowledge collaborative contributions
|
|
44
|
+
- **Safety to disagree** - Probe for true concerns (they won't volunteer)
|
|
45
|
+
|
|
46
|
+
**What doesn't work:** Variable compensation, ambiguous direction, expecting initiative on new challenges
|
|
47
|
+
|
|
48
|
+
</low_a>
|
|
49
|
+
|
|
50
|
+
<high_b label="High Social Motivators">
|
|
51
|
+
|
|
52
|
+
- **Words of affirmation** - Primary currency - verbal praise, public recognition
|
|
53
|
+
- **Small talk time** - Not wasted time, it's relationship investment
|
|
54
|
+
- **Group activities** - Include them in social events
|
|
55
|
+
- **People interaction** - Don't isolate with solo work
|
|
56
|
+
- **Public recognition** - Acknowledge in team settings
|
|
57
|
+
- **Relationship building time** - Before getting to tasks
|
|
58
|
+
|
|
59
|
+
**What doesn't work:** Solo work for extended periods, skipping small talk, private-only recognition, purely transactional relationships
|
|
60
|
+
|
|
61
|
+
</high_b>
|
|
62
|
+
|
|
63
|
+
<low_b label="Low Social Motivators">
|
|
64
|
+
|
|
65
|
+
- **Leave them alone** - Minimize unnecessary check-ins
|
|
66
|
+
- **Written communication** - Email/async over meetings
|
|
67
|
+
- **Private recognition** - Public praise is uncomfortable
|
|
68
|
+
- **Thoughtful gifts** - A useful book means more than "great job"
|
|
69
|
+
- **Quality 1:1 time** - Meaningful conversations over group settings
|
|
70
|
+
- **Focus time protection** - No unnecessary interruptions
|
|
71
|
+
|
|
72
|
+
**What doesn't work:** Frequent check-ins, group meetings, public praise, forced social events
|
|
73
|
+
|
|
74
|
+
</low_b>
|
|
75
|
+
|
|
76
|
+
<high_c label="High Patience Motivators">
|
|
77
|
+
|
|
78
|
+
- **Advance notice** - Of changes, meetings, new projects
|
|
79
|
+
- **Meeting agendas** - Sent in advance, no surprises
|
|
80
|
+
- **One topic per meeting** - Multi-topic meetings are stressful
|
|
81
|
+
- **Protected focus time** - Shield from interruptions
|
|
82
|
+
- **Predictable schedules** - Same routine, same environment
|
|
83
|
+
- **Written checklists** - Structured approaches to follow
|
|
84
|
+
- **28-minute rule** - Respect their recovery time after interruptions
|
|
85
|
+
|
|
86
|
+
**What doesn't work:** Last-minute changes, frequent pivots, multi-topic meetings, constant interruptions
|
|
87
|
+
|
|
88
|
+
</high_c>
|
|
89
|
+
|
|
90
|
+
<low_c label="Low Patience Motivators">
|
|
91
|
+
|
|
92
|
+
- **Variety** - Keep them busy, load them up
|
|
93
|
+
- **Changing environments** - Thrive in consistent pivots
|
|
94
|
+
- **Movement** - Mental or physical in their day
|
|
95
|
+
- **Fires to fight** - Creative problems to solve
|
|
96
|
+
- **DEADLINES** - Critical motivator - put in email subject lines
|
|
97
|
+
- **Multiple projects** - Allow switching between tasks
|
|
98
|
+
- **Quick wins** - Short-term goals they can complete fast
|
|
99
|
+
|
|
100
|
+
**What doesn't work:** Monotony, long-term projects without milestones, no deadlines, forced focus on single tasks
|
|
101
|
+
|
|
102
|
+
</low_c>
|
|
103
|
+
|
|
104
|
+
<high_d label="High Conformity Motivators">
|
|
105
|
+
|
|
106
|
+
- **Don't make it personal** - Frame as process improvement, not personal failure (they're already wearing it)
|
|
107
|
+
- **Training opportunities** - The currency is knowledge (conferences, CEUs, certifications)
|
|
108
|
+
- **Structured environment** - Accountable, with enforced standards
|
|
109
|
+
- **Recognition when deserved** - But ONLY if deserved. Don't compliment if it's not great; they know.
|
|
110
|
+
- **Fair, justified pay** - Based on education, experience, market rates - give them the details
|
|
111
|
+
- **Trust** - Huge word for high Ds. Don't break it.
|
|
112
|
+
- **SOPs and documentation** - Railroad tracks to stay on
|
|
113
|
+
|
|
114
|
+
**What doesn't work:** Personal criticism, unearned praise, arbitrary decisions, broken commitments, chaotic environments
|
|
115
|
+
|
|
116
|
+
</high_d>
|
|
117
|
+
|
|
118
|
+
<low_d label="Low Conformity Motivators">
|
|
119
|
+
|
|
120
|
+
- **Creative problems** - Give them something to figure out
|
|
121
|
+
- **Room to run** - Freedom from too much structure and rules
|
|
122
|
+
- **Options** - Don't box them in, offer choices
|
|
123
|
+
- **Pick your battles** - Focus on the 3 things that financially move the needle
|
|
124
|
+
- **Big picture focus** - Don't drown in details
|
|
125
|
+
- **Innovation opportunities** - Space to experiment
|
|
126
|
+
|
|
127
|
+
**What doesn't work:** Too many rules, excessive structure, detail-heavy work, micromanagement, rigid processes
|
|
128
|
+
|
|
129
|
+
</low_d>
|
|
130
|
+
|
|
131
|
+
</motivators_by_trait>
|
|
132
|
+
|
|
133
|
+
<communication_styles>
|
|
134
|
+
|
|
135
|
+
| Trait | Communication Approach |
|
|
136
|
+
|-------|------------------------|
|
|
137
|
+
| High A | Bullet points, ROI focus, outcomes not process, let them "own" ideas |
|
|
138
|
+
| Low A | Clear direction, specific feedback, collaborative framing |
|
|
139
|
+
| High B | Build relationship first, verbal processing time, public recognition |
|
|
140
|
+
| Low B | Written communication, private recognition, respect their processing time |
|
|
141
|
+
| High C | Advance notice, agendas, one topic at a time, protect focus |
|
|
142
|
+
| Low C | Deadlines in subject line, variety, quick transitions |
|
|
143
|
+
| High D | Data and details, justify decisions, earn trust, don't make personal |
|
|
144
|
+
| Low D | Big picture first, options, creative framing |
|
|
145
|
+
|
|
146
|
+
</communication_styles>
|
|
147
|
+
|
|
148
|
+
<confidence_recovery>
|
|
149
|
+
|
|
150
|
+
When someone's confidence is shaken, recovery method depends on their leading confidence trait:
|
|
151
|
+
|
|
152
|
+
| Confidence Source | Recovery Strategy |
|
|
153
|
+
|-------------------|-------------------|
|
|
154
|
+
| High A (Inner self-confidence) | Stack easy wins - get back in the winner's circle |
|
|
155
|
+
| High B (Social confidence) | Relationship reconnection - rebuild social bonds |
|
|
156
|
+
| High D (Knowledge confidence) | Acquire more knowledge - training, certifications |
|
|
157
|
+
|
|
158
|
+
</confidence_recovery>
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
<overview>
|
|
2
|
+
|
|
3
|
+
Culture Index identifies 19 distinct behavioral patterns based on the configuration of A, B, C, D traits. The interaction between traits reveals more than individual positions.
|
|
4
|
+
|
|
5
|
+
</overview>
|
|
6
|
+
|
|
7
|
+
<common_archetypes>
|
|
8
|
+
|
|
9
|
+
| Archetype | Pattern | Description | Typical Roles |
|
|
10
|
+
|-----------|---------|-------------|---------------|
|
|
11
|
+
| Visionary/Architect | High A, Low C, Low D | Big-picture, fast-paced, dislikes details. Best system builders when also high D. | CEO, Entrepreneur, Founder |
|
|
12
|
+
| Rainmaker/Persuader | High A, High B, Low C | Aggressive, charming, fast. Closes deals, builds relationships. | Sales Hunter, BD, Account Executive |
|
|
13
|
+
| Scholar/Specialist | Low B, High C, High D | Introverted, patient, detail-oriented. Deep expertise. | Engineer, CFO, Analyst |
|
|
14
|
+
| Accommodator | Low A, High B, High C | Team player, patient, people-focused. Service orientation. | HR, Customer Success |
|
|
15
|
+
| Debater | High B, Low A, Low D | Charming, non-conforming, unfiltered. Good storyteller. | Sales (relationship), Creative |
|
|
16
|
+
| Technical Expert | Low A, Low B, Low C, High D | Efficient specialists. Fast-moving detail people. | Security, QC, Ops |
|
|
17
|
+
| Craftsman | Low A, Low B, High C, High D | Patient, precise executors. Expert taskmasters. | Finance, Compliance |
|
|
18
|
+
| Socializer | Low A, High B, High C, Low D | Go along, get along. Team-focused, people-focused, slowing down. | Support, HR |
|
|
19
|
+
| Philosopher | High A, Low B, High C | Patient, analytical thinkers. Independent contemplation. | Strategy, Research |
|
|
20
|
+
| Administrator | Moderate across traits | Versatile generalists. Can adapt to many situations. | Operations, General Management |
|
|
21
|
+
|
|
22
|
+
</common_archetypes>
|
|
23
|
+
|
|
24
|
+
<trait_combinations>
|
|
25
|
+
|
|
26
|
+
Notable combinations and their implications:
|
|
27
|
+
|
|
28
|
+
| Combination | Name | Behavior |
|
|
29
|
+
|-------------|------|----------|
|
|
30
|
+
| High A + Low D | **Greatest Risk Takers** | Aggressive risk-taker without brakes. Gas pedal only. Most independent people (two types of independence combined). |
|
|
31
|
+
| Low A + High D | **Most Risk Averse** | Conservative, careful, will never cut corners. Bottom-line protectors. |
|
|
32
|
+
| Low A + High B | Collaborative Leader | Servant leadership, great team builder, may avoid necessary conflict |
|
|
33
|
+
| Low B + High C | "Leave Me Alone x2" | Strongly prefers solitary, focused work. Double introversion signal. |
|
|
34
|
+
| High B + Low C | Verbal Sprayer | Talks fast, often, many topics. Processing out loud rapidly. |
|
|
35
|
+
| High A + Low B | Results Driver | Drives results without regard for feelings. May seem low EQ. |
|
|
36
|
+
| High D + Low A | Perfectionist Follower | Executes exactly as instructed, never cuts corners. Good at optimizing existing processes. |
|
|
37
|
+
| High A + High D | Process Builder | Forward-thinking AND detail-oriented. Can build NEW systems and processes. (Architects, Scholars, Technical Experts) |
|
|
38
|
+
| Low C + Low D | Double Error Risk | Moving fast (Low C) + not checking work (Low D) = high error rate. Needs systems to catch mistakes. |
|
|
39
|
+
| Low C + High D | Wound Tight | Impatient AND perfectionist. High strung, worrisome, feels everything is urgent and must be perfect. |
|
|
40
|
+
|
|
41
|
+
</trait_combinations>
|
|
42
|
+
|
|
43
|
+
<task_vs_people>
|
|
44
|
+
|
|
45
|
+
A vs B determines task vs people orientation:
|
|
46
|
+
|
|
47
|
+
| Pattern | Meaning |
|
|
48
|
+
|---------|---------|
|
|
49
|
+
| A > B | Values tasks over people; will push through to get results |
|
|
50
|
+
| B > A | Values people over tasks; prioritizes harmony and relationships |
|
|
51
|
+
|
|
52
|
+
</task_vs_people>
|
|
53
|
+
|
|
54
|
+
<strategic_cross>
|
|
55
|
+
|
|
56
|
+
**Low C + Low D = "Maverick" or "Change Agent"**
|
|
57
|
+
|
|
58
|
+
- Fast-moving (Low C) and unconcerned with rules (Low D)
|
|
59
|
+
- Natural agents of change and innovation
|
|
60
|
+
- May cause disruption
|
|
61
|
+
- Good for turnarounds, startups, transformations
|
|
62
|
+
|
|
63
|
+
</strategic_cross>
|
|
64
|
+
|
|
65
|
+
<technical_stack>
|
|
66
|
+
|
|
67
|
+
**High C + High D = "Specialist" or "Operator"**
|
|
68
|
+
|
|
69
|
+
- Patient (High C) and precise (High D)
|
|
70
|
+
- Will ensure work is done correctly, won't rush
|
|
71
|
+
- May resist change
|
|
72
|
+
- Good for compliance, quality, operations
|
|
73
|
+
|
|
74
|
+
</technical_stack>
|
|
75
|
+
|
|
76
|
+
<chameleon_pattern>
|
|
77
|
+
|
|
78
|
+
**All four primary dots near the arrow = "Chameleon"**
|
|
79
|
+
|
|
80
|
+
- Statistically average across all traits
|
|
81
|
+
- Unpublished pattern making up less than 0.57% of population
|
|
82
|
+
- Maximum flexibility but may lack strong, predictable drivers
|
|
83
|
+
- Hard to pin down - adapts to situations
|
|
84
|
+
|
|
85
|
+
</chameleon_pattern>
|
|
86
|
+
|
|
87
|
+
<pattern_width>
|
|
88
|
+
|
|
89
|
+
The spread between traits matters as much as individual positions.
|
|
90
|
+
|
|
91
|
+
**Wide pattern** (traits spread far apart):
|
|
92
|
+
- More extreme, predictable behaviors
|
|
93
|
+
- Stronger drivers
|
|
94
|
+
- Easier to predict day-to-day behavior
|
|
95
|
+
|
|
96
|
+
**Narrow pattern** (traits clustered):
|
|
97
|
+
- More moderate, flexible behaviors
|
|
98
|
+
- Less predictable
|
|
99
|
+
- Can adapt to situations
|
|
100
|
+
|
|
101
|
+
Two people can have identical A positions but vastly different overall patterns due to B/C/D spread.
|
|
102
|
+
|
|
103
|
+
</pattern_width>
|
|
104
|
+
|
|
105
|
+
<pattern_fit_warning>
|
|
106
|
+
|
|
107
|
+
**Flight risk signal**: When someone's Job behaviors show the opposite of their Survey traits.
|
|
108
|
+
|
|
109
|
+
Example: Architect pattern (High A, Low C, Low D) → Socializer in job (Low A, High B, High C, Low D)
|
|
110
|
+
- All dots flipped to opposite side
|
|
111
|
+
- This is imminent flight risk
|
|
112
|
+
- Something must change or they will leave
|
|
113
|
+
|
|
114
|
+
</pattern_fit_warning>
|
|
115
|
+
|
|
116
|
+
<role_fit_questions>
|
|
117
|
+
|
|
118
|
+
When determining what pattern fits a role, ask:
|
|
119
|
+
|
|
120
|
+
| Question | Left Answer | Right Answer | Relevant Trait |
|
|
121
|
+
|----------|-------------|--------------|----------------|
|
|
122
|
+
| Is this role more **macro** or **micro**? | Micro (details, execution) | Macro (big picture, strategy) | A trait |
|
|
123
|
+
| Is this position more about **people skills** or **problem solving**? | Problem solving | People skills | B trait |
|
|
124
|
+
| How much **repetition** is in this role? | Low repetition, chaos, variety | High repetition, stability, predictable | C trait |
|
|
125
|
+
|
|
126
|
+
**Use these to match patterns:**
|
|
127
|
+
- Macro + people + variety = High A, High B, Low C (Rainmaker/Persuader)
|
|
128
|
+
- Micro + problem solving + stability = Low A, Low B, High C, High D (Craftsman/Specialist)
|
|
129
|
+
- Macro + problem solving + stability = High A, Low B, High C, High D (Scholar/Architect)
|
|
130
|
+
|
|
131
|
+
</role_fit_questions>
|
|
132
|
+
|
|
133
|
+
<identifying_pattern>
|
|
134
|
+
|
|
135
|
+
**Quick interpretation method:**
|
|
136
|
+
|
|
137
|
+
1. Find the farthest dot from the normative line (highest deviation)
|
|
138
|
+
2. Identify which range it falls into:
|
|
139
|
+
- ±2 centiles = "somewhat" or "very" (one standard deviation)
|
|
140
|
+
- ±4 centiles = "extremely" (entering six-sigma territory)
|
|
141
|
+
3. Use word descriptors from the appropriate column
|
|
142
|
+
|
|
143
|
+
**Example**: D trait is 4.5 centiles right of the norm = "extremely conforming perfectionist, precise, cautious, accurate."
|
|
144
|
+
|
|
145
|
+
**For dots on or near the line** (±0.5): "Situationally, depending on your level of comfort and experience, you might be [right-side words] or [left-side words]."
|
|
146
|
+
|
|
147
|
+
</identifying_pattern>
|
package/skills/security-culture-index/skills/interpreting-culture-index/references/primary-traits.md
ADDED
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
<overview>
|
|
2
|
+
|
|
3
|
+
The four primary traits (A, B, C, D) are the main drivers of behavior. The relationship BETWEEN dots is often more important than individual positions. All interpretations are relative to the red arrow (population mean).
|
|
4
|
+
|
|
5
|
+
</overview>
|
|
6
|
+
|
|
7
|
+
<trait name="A" color="maroon" label="Autonomy">
|
|
8
|
+
|
|
9
|
+
Measures **mental initiative** (think and start on their own) and **inner self-confidence** (belief in self that they will win regardless of circumstance).
|
|
10
|
+
|
|
11
|
+
<high_a side="right">
|
|
12
|
+
|
|
13
|
+
**Characteristics:**
|
|
14
|
+
- Self-confident, self-starter, self-motivated, self-driven, self-reliant
|
|
15
|
+
- Assertive, aggressive, ruthlessly competitive
|
|
16
|
+
- Future-focused and strategic - sees the full 360-degree lay of the land
|
|
17
|
+
- Prioritizes time based on ROI - trades in time and money
|
|
18
|
+
- Willing to confront - conflict is just a means to an end
|
|
19
|
+
- "Enough equals more" - always raises the bar, never satisfied
|
|
20
|
+
- Opinionated - typically thinks they're the smartest person in the room
|
|
21
|
+
|
|
22
|
+
**Challenges:**
|
|
23
|
+
- Single hardest trait to employ - they work for "me, Inc." first
|
|
24
|
+
- "You are only RENTING high A's" - need mutually beneficial partnership
|
|
25
|
+
- Kryptonite is people - people will consistently disappoint them
|
|
26
|
+
- May take matters into their own hands when others "move too slow"
|
|
27
|
+
- Can LEAD (vision, strategy) but struggle to MANAGE (routine operations)
|
|
28
|
+
|
|
29
|
+
**Best Fit Roles:** Leadership, sales, entrepreneurship, strategy
|
|
30
|
+
|
|
31
|
+
**Communicating with High A's:**
|
|
32
|
+
- Use bullet points focused on ROI - they won't read walls of text
|
|
33
|
+
- "Bake me a cake" approach: Give outcomes, not step-by-step instructions
|
|
34
|
+
- Get buy-in through questions, not statements - let them "own" the idea
|
|
35
|
+
- Prefer variable compensation (bonus, equity, commission) over fixed salary
|
|
36
|
+
|
|
37
|
+
**Who High A's Respect:**
|
|
38
|
+
- People ahead of them (mentors, more successful peers)
|
|
39
|
+
- People with inner confidence who aren't threatened by them
|
|
40
|
+
- NOT people who capitulate or seem "weak"
|
|
41
|
+
|
|
42
|
+
</high_a>
|
|
43
|
+
|
|
44
|
+
<low_a side="left">
|
|
45
|
+
|
|
46
|
+
**Characteristics:**
|
|
47
|
+
- Helpful, supportive, service-oriented, accommodating, peaceful
|
|
48
|
+
- Servant leadership orientation - "what do WE need to win"
|
|
49
|
+
- Tactical and present-focused (vs high A's strategic future-focus)
|
|
50
|
+
- Excel at execution once direction is clear
|
|
51
|
+
- Team-oriented - finds genuine satisfaction in supporting others' success
|
|
52
|
+
- Prefers direction before acting - doesn't initiate on their own
|
|
53
|
+
|
|
54
|
+
**Challenges:**
|
|
55
|
+
- Indecisive with NEW challenges - need frameworks, precedents, or direction
|
|
56
|
+
- Conflict averse - may agree to things they don't support to keep peace
|
|
57
|
+
- May be put in leadership roles they didn't seek (and will burn out)
|
|
58
|
+
- Can appear passive when waiting for direction
|
|
59
|
+
|
|
60
|
+
**Best Fit Roles:** Support roles, customer service, collaborative teams, execution
|
|
61
|
+
|
|
62
|
+
**Managing Low A's:**
|
|
63
|
+
- Provide specific praise, not general ("Great job on the Johnson proposal")
|
|
64
|
+
- Offer consistent, predictable compensation over variable bonuses
|
|
65
|
+
- Give clear frameworks for novel decisions
|
|
66
|
+
- Don't interpret conflict avoidance as agreement - probe for true concerns
|
|
67
|
+
|
|
68
|
+
</low_a>
|
|
69
|
+
|
|
70
|
+
<leadership_styles>
|
|
71
|
+
|
|
72
|
+
| Style | Trait | Mindset | Characteristics |
|
|
73
|
+
|-------|-------|---------|-----------------|
|
|
74
|
+
| ABL (Action Based Leadership) | High A | "What do I need to win?" | Self-directed, competitive, drives from front |
|
|
75
|
+
| WPL (Wolf Pack Leadership) | Low A | "What do WE need to win?" | Collaborative, consensus-building, servant leadership |
|
|
76
|
+
|
|
77
|
+
Neither is better - depends on context. High-growth/turnaround may need ABL. Stable/complex operations may benefit from WPL.
|
|
78
|
+
|
|
79
|
+
</leadership_styles>
|
|
80
|
+
|
|
81
|
+
</trait>
|
|
82
|
+
|
|
83
|
+
<trait name="B" color="yellow" label="Social Ability">
|
|
84
|
+
|
|
85
|
+
Measures need for social interaction and persuasion.
|
|
86
|
+
|
|
87
|
+
<high_b side="right">
|
|
88
|
+
|
|
89
|
+
**Characteristics:**
|
|
90
|
+
- Dual nature: Social competence (skill to connect) + need for acceptance (drive to connect)
|
|
91
|
+
- Verbal processors - "think out loud." First statement isn't final position.
|
|
92
|
+
- Relational equity required - must build relationship BEFORE discussing tasks
|
|
93
|
+
- Culture builders - create positive atmosphere, the "fun part of the zoo"
|
|
94
|
+
- Energized by people, drained by isolation
|
|
95
|
+
- Fear: rejection, exclusion, being disliked
|
|
96
|
+
|
|
97
|
+
**Managing High B's:**
|
|
98
|
+
- Words of affirmation are primary currency - verbal praise, public recognition
|
|
99
|
+
- Allow small talk - it's not wasted time, it's relationship investment
|
|
100
|
+
- Include them in group activities and social events
|
|
101
|
+
- Don't isolate them with solo work for extended periods
|
|
102
|
+
- Note: With Low C, they become "sprayers" - lots of fast talking
|
|
103
|
+
|
|
104
|
+
**Best Fit Roles:** Sales, PR, public speaking, management, team building
|
|
105
|
+
|
|
106
|
+
</high_b>
|
|
107
|
+
|
|
108
|
+
<low_b side="left">
|
|
109
|
+
|
|
110
|
+
**Characteristics:**
|
|
111
|
+
- "There for the work" - not for relationships. Socializing feels like a tax.
|
|
112
|
+
- Prefer solitary or small-group work environments
|
|
113
|
+
- Process internally before speaking - silence does not equal disengagement
|
|
114
|
+
- Analytical, reserved, focused - ideal for deep work
|
|
115
|
+
- Fear: being forced into social situations, public attention
|
|
116
|
+
|
|
117
|
+
**Managing Low B's:**
|
|
118
|
+
- Leave them alone - minimize unnecessary check-ins
|
|
119
|
+
- Email/async preferred over meetings - let them process in writing
|
|
120
|
+
- Private recognition - public praise is uncomfortable
|
|
121
|
+
- Thoughtful gifts > verbal praise (a useful book means more than "great job")
|
|
122
|
+
- Quality time: meaningful 1:1 > group settings
|
|
123
|
+
- Don't mistake quiet for disengagement or unhappiness
|
|
124
|
+
|
|
125
|
+
**Best Fit Roles:** Engineering, accounting, research, coding, analysis
|
|
126
|
+
|
|
127
|
+
</low_b>
|
|
128
|
+
|
|
129
|
+
</trait>
|
|
130
|
+
|
|
131
|
+
<trait name="C" color="blue" label="Pace/Patience">
|
|
132
|
+
|
|
133
|
+
Measures patience, urgency, and rate of motion. **Force multiplier** - intensifies or calms how other traits manifest.
|
|
134
|
+
|
|
135
|
+
**Analogy:** High C = scheduled surgeons (focused, present, deliberate). Low C = emergency room operators (spinning plates, time-sensitive, variety).
|
|
136
|
+
|
|
137
|
+
<high_c side="right">
|
|
138
|
+
|
|
139
|
+
**Characteristics:**
|
|
140
|
+
- Patient, steady, calm, consistent, resists sudden change
|
|
141
|
+
- Extended focus capability - can concentrate for long periods
|
|
142
|
+
- **28-minute recovery** from interruptions - protect their focus time
|
|
143
|
+
- Sequential, systematic processing - one thing at a time
|
|
144
|
+
- Checklist oriented - give structured approaches, they'll follow exactly
|
|
145
|
+
- Consistency preferred - same desk, schedule, tools
|
|
146
|
+
- Patient with complexity - will work through problems methodically
|
|
147
|
+
|
|
148
|
+
**Managing High C's:**
|
|
149
|
+
- Send meeting agendas in advance - no surprises
|
|
150
|
+
- One meeting, one topic - multi-topic meetings are stressful
|
|
151
|
+
- Protect them from frequent interruptions
|
|
152
|
+
- Provide predictable schedules and environments
|
|
153
|
+
- Give advance notice of changes
|
|
154
|
+
|
|
155
|
+
**Best Fit Roles:** Administrative work, long-term projects, routine tasks, operations
|
|
156
|
+
|
|
157
|
+
</high_c>
|
|
158
|
+
|
|
159
|
+
<low_c side="left">
|
|
160
|
+
|
|
161
|
+
**Characteristics:**
|
|
162
|
+
- Impatient, quick, fast, restless, multifocused, intense, urgent
|
|
163
|
+
- Zero to 60 immediately - instant attention ramp-up
|
|
164
|
+
- Short attention span - a bit of ADD tendency
|
|
165
|
+
- Change agents - open to change primarily because they get bored easily
|
|
166
|
+
- Struggle staying in the moment - constantly thinking "what's next?"
|
|
167
|
+
- If D is not high: procrastination ("if I wait to the last minute, it only takes a minute")
|
|
168
|
+
- Overextension/over-scheduling - overestimate how much they can accomplish
|
|
169
|
+
|
|
170
|
+
**Pluses:**
|
|
171
|
+
- Create urgency and drive results (GSD - get stuff done)
|
|
172
|
+
- Good with variety and pivots - pivot faster than high C
|
|
173
|
+
- Good under pressure/stress (even if they look animated/hair on fire)
|
|
174
|
+
- Firefighters - when attention turns to something, they're fully engaged
|
|
175
|
+
|
|
176
|
+
**Minuses:**
|
|
177
|
+
- Can spin up others unnecessarily - disruptive when situation doesn't warrant urgency
|
|
178
|
+
- Interrupt others ("Did you get that email? Did you get back to me?")
|
|
179
|
+
- Moving fast leads to errors (especially without high D to catch mistakes)
|
|
180
|
+
- Get bored easily - often over-promoted because "can I help?" is misread as ambition
|
|
181
|
+
|
|
182
|
+
**Low C Motivators:**
|
|
183
|
+
- Variety - keep them busy, load them up
|
|
184
|
+
- Evolving, changing environments - thrive in consistent pivots
|
|
185
|
+
- Movement (mental or physical) in their day
|
|
186
|
+
- Fires to fight - creative problems to solve
|
|
187
|
+
- **DEADLINES** - critical motivator. Put deadlines in email subject lines.
|
|
188
|
+
|
|
189
|
+
**Best Fit Roles:** Startups, emergency response, rapid-fire environments
|
|
190
|
+
|
|
191
|
+
</low_c>
|
|
192
|
+
|
|
193
|
+
<c_as_modifier>
|
|
194
|
+
|
|
195
|
+
C acts as a **force multiplier** for other traits:
|
|
196
|
+
|
|
197
|
+
**Low C (Intensifier):** Adds urgency and "violence" to other traits
|
|
198
|
+
- High B + Low C = Proactively social, "buzzing around," many shorter conversations
|
|
199
|
+
- High D + Low C = Mistakes get called out QUICKLY
|
|
200
|
+
- High A + Low C = Aggressive, impatient driver who demands results NOW
|
|
201
|
+
|
|
202
|
+
**High C (Sedative):** Calms and steadies other traits
|
|
203
|
+
- High B + High C = Better listener, deeper conversations
|
|
204
|
+
- High D + High C = Notices issues but approaches steadily, might fix it themselves quietly
|
|
205
|
+
- High A + High C = Strategic and determined, but willing to wait for the right moment
|
|
206
|
+
|
|
207
|
+
</c_as_modifier>
|
|
208
|
+
|
|
209
|
+
</trait>
|
|
210
|
+
|
|
211
|
+
<trait name="D" color="green" label="Conformity">
|
|
212
|
+
|
|
213
|
+
Measures attention to detail, rules, and structure. **Third confidence trait** - confidence rooted in knowledge and competency.
|
|
214
|
+
|
|
215
|
+
<high_d side="right">
|
|
216
|
+
|
|
217
|
+
**Characteristics:**
|
|
218
|
+
- Accurate, careful, detail-oriented, historical, specific, micro-organized
|
|
219
|
+
- **Need SOPs** - must lay "railroad tracks" for them to stay on track
|
|
220
|
+
- Won't feel comfortable doing anything until they've mastered it - "no" until "know"
|
|
221
|
+
- Look back to see what the measurement is before acting (historical mindset)
|
|
222
|
+
- High levels of self-discipline and self-management
|
|
223
|
+
- Their own worst critic - take themselves "behind the woodshed" when they make mistakes
|
|
224
|
+
- Long memories - remember nitpicky particulars, including who failed them in 2018
|
|
225
|
+
- Currency they trade in is knowledge - all the certifications
|
|
226
|
+
|
|
227
|
+
**Pluses:**
|
|
228
|
+
- Reliable, dependable, consistent quality
|
|
229
|
+
- Executors and finishers - sustain and maintain things, circle back around
|
|
230
|
+
- Highly accountable - will do what they say
|
|
231
|
+
- Risk mitigation experts - defenders of what's right, defenders of the truth
|
|
232
|
+
- Good delegation targets - when you delegate to them, certainty they'll do it well (if properly defined)
|
|
233
|
+
- Quality control, compliance, operational excellence backbone
|
|
234
|
+
|
|
235
|
+
**Minuses:**
|
|
236
|
+
- Lost without SOPs - struggle outside the box, inflexible, rigid
|
|
237
|
+
- Uncomfortable when asked to do something beyond normal role
|
|
238
|
+
- Don't naturally delegate - hard to trust others, becomes bottleneck
|
|
239
|
+
- Long memories can lead to grudge-holding
|
|
240
|
+
- Critical - find the flaw, focus on what's wrong (even when 9 of 10 things are right)
|
|
241
|
+
- Judgmental - "I give 110%, you should too"
|
|
242
|
+
- Thin-skinned and blame-avoidant when confronted personally
|
|
243
|
+
|
|
244
|
+
**High D Motivators:**
|
|
245
|
+
- Don't make it personal - frame as process improvement, not personal failure
|
|
246
|
+
- Training and learning opportunities - the currency is knowledge
|
|
247
|
+
- Structured, accountable environment
|
|
248
|
+
- Recognition for hard work - but ONLY if deserved
|
|
249
|
+
- Fair pay based on education, experience, market rates
|
|
250
|
+
- Trust - huge word for high Ds. Don't break it.
|
|
251
|
+
|
|
252
|
+
**Best Fit Roles:** Finance, compliance, quality control, legal, security, ops
|
|
253
|
+
|
|
254
|
+
</high_d>
|
|
255
|
+
|
|
256
|
+
<low_d side="left">
|
|
257
|
+
|
|
258
|
+
**Characteristics:**
|
|
259
|
+
- Non-conforming, out of the box, free-spirited, conceptual, casual, flexible
|
|
260
|
+
- Don't need historical context or proof of concept to experiment
|
|
261
|
+
- Every day is a new day - shorter recall, don't hold on to yesterday
|
|
262
|
+
- Really good at getting things 80% done, then need others for maintenance/finishing
|
|
263
|
+
- Unfiltered - don't always mind their p's and q's
|
|
264
|
+
- Rules are meant to be interpreted, bent, broken
|
|
265
|
+
|
|
266
|
+
**Pluses:**
|
|
267
|
+
- Willingness to delegate (opposite of high D)
|
|
268
|
+
- Flexible and resilient - don't see limitations
|
|
269
|
+
- Creative brainstorming partners - look at things in non-traditional ways
|
|
270
|
+
- Good with innovation and experimentation
|
|
271
|
+
- Shorter recall = resiliency (get kicked in the mouth today, blank slate tomorrow)
|
|
272
|
+
|
|
273
|
+
**Minuses:**
|
|
274
|
+
- Inconsistent follow-through - out of sight, out of mind
|
|
275
|
+
- Forgetful - need systems/automation to catch things
|
|
276
|
+
- Sloppy execution when disinterested
|
|
277
|
+
- Don't always stay in their lane - don't see lanes as much
|
|
278
|
+
- Won't circle back on finer details without systems
|
|
279
|
+
|
|
280
|
+
**Low D Motivators:**
|
|
281
|
+
- Creative problems to solve - give them something to figure out
|
|
282
|
+
- Room to run - freedom from too much structure and too many rules
|
|
283
|
+
- Options - don't box them in, offer choices
|
|
284
|
+
- Pick your battles - focus on the 3 things that financially move the needle
|
|
285
|
+
|
|
286
|
+
**Best Fit Roles:** Strategy, creative roles, R&D, visionary leadership
|
|
287
|
+
|
|
288
|
+
</low_d>
|
|
289
|
+
|
|
290
|
+
<key_relationship>
|
|
291
|
+
|
|
292
|
+
"The A starts, the D finishes."
|
|
293
|
+
|
|
294
|
+
- A initiates and drives; D executes and completes
|
|
295
|
+
- Building NEW processes: High A + High D = architects, scholars, technical experts
|
|
296
|
+
- Optimizing EXISTING processes: Low A + High D = specialists
|
|
297
|
+
|
|
298
|
+
**Independence Types:**
|
|
299
|
+
- High A independence: "I have a goal, I have a plan, I don't care if anyone follows me"
|
|
300
|
+
- Low D independence: "Don't control me. Don't tell me not to do something."
|
|
301
|
+
- Most independent people: High A + Low D
|
|
302
|
+
- Greatest risk takers: High A + Low D
|
|
303
|
+
- Most risk averse: Low A + High D
|
|
304
|
+
|
|
305
|
+
</key_relationship>
|
|
306
|
+
|
|
307
|
+
</trait>
|