@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,234 @@
|
|
|
1
|
+
<required_reading>
|
|
2
|
+
|
|
3
|
+
**Read these reference files before debrief:**
|
|
4
|
+
1. `references/patterns-archetypes.md` - Pattern identification and role fit
|
|
5
|
+
2. `references/team-composition.md` - Gas/Brake/Glue framework
|
|
6
|
+
3. `workflows/predict-from-interview.md` - How predictions were generated
|
|
7
|
+
4. `workflows/define-hiring-profile.md` - If hiring profile exists
|
|
8
|
+
|
|
9
|
+
</required_reading>
|
|
10
|
+
|
|
11
|
+
<purpose>
|
|
12
|
+
|
|
13
|
+
Evaluate a candidate's predicted Culture Index profile against role requirements and team composition. This workflow helps make informed hiring decisions using transcript-predicted traits, with appropriate caveats about prediction confidence.
|
|
14
|
+
|
|
15
|
+
**Important:** This uses PREDICTED traits from interview analysis, not actual CI survey results. The actual survey will be administered after offer acceptance. Use this for preliminary assessment only.
|
|
16
|
+
|
|
17
|
+
</purpose>
|
|
18
|
+
|
|
19
|
+
<process>
|
|
20
|
+
|
|
21
|
+
**Step 1: Load Predicted Profile**
|
|
22
|
+
|
|
23
|
+
Gather the prediction from transcript analysis:
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
Candidate: [Name]
|
|
27
|
+
Analysis Date: [Date]
|
|
28
|
+
Interview Source: [Interview type, duration]
|
|
29
|
+
|
|
30
|
+
Predicted Traits:
|
|
31
|
+
| Trait | Predicted | Confidence | Key Evidence |
|
|
32
|
+
|-------|-----------|------------|--------------|
|
|
33
|
+
| A | [High/Low/Norm] | [H/M/L] | "[Quote]" |
|
|
34
|
+
| B | [High/Low/Norm] | [H/M/L] | "[Quote]" |
|
|
35
|
+
| C | [High/Low/Norm] | [H/M/L] | "[Quote]" |
|
|
36
|
+
| D | [High/Low/Norm] | [H/M/L] | "[Quote]" |
|
|
37
|
+
| L | [0-10] | [H/M/L] | "[Quote]" |
|
|
38
|
+
| I | [0-10] | [H/M/L] | "[Quote]" |
|
|
39
|
+
|
|
40
|
+
Predicted Pattern: [Pattern name]
|
|
41
|
+
Overall Confidence: [High/Medium/Low]
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
**Step 2: Load Role Requirements**
|
|
45
|
+
|
|
46
|
+
If a hiring profile exists, load it. Otherwise, answer the role-fit questions:
|
|
47
|
+
|
|
48
|
+
| Question | Answer | Required Trait |
|
|
49
|
+
|----------|--------|----------------|
|
|
50
|
+
| Macro or micro? | [answer] | A: [High/Low/Norm] |
|
|
51
|
+
| People or problems? | [answer] | B: [High/Low/Norm] |
|
|
52
|
+
| Repetition level? | [answer] | C: [High/Low/Norm] |
|
|
53
|
+
| Process adherence? | [answer] | D: [High/Low/Norm] |
|
|
54
|
+
|
|
55
|
+
**Target Pattern:** [Pattern name]
|
|
56
|
+
**Red Flags for Role:** [traits that would struggle]
|
|
57
|
+
|
|
58
|
+
**Step 3: Compare Predicted vs Required**
|
|
59
|
+
|
|
60
|
+
| Trait | Predicted | Required | Match | Notes |
|
|
61
|
+
|-------|-----------|----------|-------|-------|
|
|
62
|
+
| A | [pred] | [req] | [Y/N/~] | [concern if any] |
|
|
63
|
+
| B | [pred] | [req] | [Y/N/~] | [concern if any] |
|
|
64
|
+
| C | [pred] | [req] | [Y/N/~] | [concern if any] |
|
|
65
|
+
| D | [pred] | [req] | [Y/N/~] | [concern if any] |
|
|
66
|
+
| L | [pred] | [req] | [Y/N/~] | [concern if any] |
|
|
67
|
+
| I | [pred] | [req] | [Y/N/~] | [concern if any] |
|
|
68
|
+
|
|
69
|
+
**Match key:**
|
|
70
|
+
- Y = Strong match (same direction, similar magnitude)
|
|
71
|
+
- ~ = Acceptable (within tolerance)
|
|
72
|
+
- N = Mismatch (opposite direction or extreme gap)
|
|
73
|
+
|
|
74
|
+
**Step 4: Check Against Red Flags**
|
|
75
|
+
|
|
76
|
+
Compare predicted traits to role red flags:
|
|
77
|
+
|
|
78
|
+
| Red Flag | Predicted | Hit? | Severity |
|
|
79
|
+
|----------|-----------|------|----------|
|
|
80
|
+
| [trait/pattern] | [prediction] | [Y/N] | [High/Med/Low] |
|
|
81
|
+
|
|
82
|
+
**Red flag hits:** [count]
|
|
83
|
+
|
|
84
|
+
**Step 5: Assess Team Fit**
|
|
85
|
+
|
|
86
|
+
If team profiles are available:
|
|
87
|
+
|
|
88
|
+
**Current Team Composition:**
|
|
89
|
+
- Gas (High A): [count] people
|
|
90
|
+
- Brake (High D): [count] people
|
|
91
|
+
- Glue (High B): [count] people
|
|
92
|
+
|
|
93
|
+
**Would this candidate add:**
|
|
94
|
+
- [ ] Needed Gas (High A)?
|
|
95
|
+
- [ ] Needed Brake (High D)?
|
|
96
|
+
- [ ] Needed Glue (High B)?
|
|
97
|
+
- [ ] Diversity of perspective?
|
|
98
|
+
|
|
99
|
+
**Potential team friction:**
|
|
100
|
+
- [Candidate trait] vs [Team member trait]: [friction risk]
|
|
101
|
+
|
|
102
|
+
**Step 6: Assess Manager Fit**
|
|
103
|
+
|
|
104
|
+
If hiring manager's profile is known:
|
|
105
|
+
|
|
106
|
+
| Trait | Manager | Candidate (Predicted) | Gap |
|
|
107
|
+
|-------|---------|----------------------|-----|
|
|
108
|
+
| A | [pos] | [pred] | [diff] |
|
|
109
|
+
| B | [pos] | [pred] | [diff] |
|
|
110
|
+
| C | [pos] | [pred] | [diff] |
|
|
111
|
+
| D | [pos] | [pred] | [diff] |
|
|
112
|
+
|
|
113
|
+
**Predicted working relationship:**
|
|
114
|
+
- [Alignment or friction point 1]
|
|
115
|
+
- [Alignment or friction point 2]
|
|
116
|
+
|
|
117
|
+
**Step 7: Weight Confidence Levels**
|
|
118
|
+
|
|
119
|
+
Calculate weighted assessment based on prediction confidence:
|
|
120
|
+
|
|
121
|
+
| Factor | Assessment | Confidence Weight | Weighted |
|
|
122
|
+
|--------|------------|-------------------|----------|
|
|
123
|
+
| Role fit | [Strong/Moderate/Weak] | [H/M/L → 3/2/1] | [score] |
|
|
124
|
+
| Team fit | [Strong/Moderate/Weak] | [H/M/L → 3/2/1] | [score] |
|
|
125
|
+
| Red flag hits | [None/Some/Multiple] | [H/M/L → 3/2/1] | [score] |
|
|
126
|
+
| Manager fit | [Strong/Moderate/Weak] | [H/M/L → 3/2/1] | [score] |
|
|
127
|
+
|
|
128
|
+
**Important confidence caveats:**
|
|
129
|
+
- Low confidence traits: May change significantly when actual CI is administered
|
|
130
|
+
- Medium confidence: Directionally correct but magnitude uncertain
|
|
131
|
+
- High confidence: Likely accurate, but interview stress may have affected
|
|
132
|
+
|
|
133
|
+
**Step 8: Generate Recommendation**
|
|
134
|
+
|
|
135
|
+
Based on weighted assessment:
|
|
136
|
+
|
|
137
|
+
| Overall Fit | Recommendation | Action |
|
|
138
|
+
|-------------|----------------|--------|
|
|
139
|
+
| Strong fit, high confidence | **Proceed** | Extend offer, plan for CI survey |
|
|
140
|
+
| Strong fit, low confidence | **Proceed with note** | Extend offer, flag traits to verify |
|
|
141
|
+
| Moderate fit | **Proceed with awareness** | Extend offer, prepare for onboarding adjustments |
|
|
142
|
+
| Weak fit, concerns | **Discuss** | Review concerns with hiring team |
|
|
143
|
+
| Red flag hits | **Pause** | Additional interviews or reconsider |
|
|
144
|
+
|
|
145
|
+
**Step 9: Compile Debrief Summary**
|
|
146
|
+
|
|
147
|
+
```markdown
|
|
148
|
+
## Interview Debrief: [Candidate Name]
|
|
149
|
+
|
|
150
|
+
**Date:** [Date]
|
|
151
|
+
**Role:** [Position]
|
|
152
|
+
**Prediction Source:** [Interview type, duration]
|
|
153
|
+
**Overall Prediction Confidence:** [High/Medium/Low]
|
|
154
|
+
|
|
155
|
+
### Predicted Profile Summary
|
|
156
|
+
| Trait | Predicted | Confidence |
|
|
157
|
+
|-------|-----------|------------|
|
|
158
|
+
| A | [pos] | [H/M/L] |
|
|
159
|
+
| B | [pos] | [H/M/L] |
|
|
160
|
+
| C | [pos] | [H/M/L] |
|
|
161
|
+
| D | [pos] | [H/M/L] |
|
|
162
|
+
|
|
163
|
+
**Predicted Pattern:** [Pattern]
|
|
164
|
+
|
|
165
|
+
### Fit Assessment
|
|
166
|
+
|
|
167
|
+
**Role Fit:** [Strong/Moderate/Weak]
|
|
168
|
+
- [Key alignment or concern]
|
|
169
|
+
|
|
170
|
+
**Team Fit:** [Strong/Moderate/Weak]
|
|
171
|
+
- [Key alignment or concern]
|
|
172
|
+
|
|
173
|
+
**Manager Fit:** [Strong/Moderate/Weak]
|
|
174
|
+
- [Key alignment or concern]
|
|
175
|
+
|
|
176
|
+
### Red Flags
|
|
177
|
+
- [Red flag 1, if any]
|
|
178
|
+
- [Red flag 2, if any]
|
|
179
|
+
|
|
180
|
+
### Recommendation
|
|
181
|
+
**[Proceed / Proceed with Note / Discuss / Pause]**
|
|
182
|
+
|
|
183
|
+
[1-2 sentence rationale]
|
|
184
|
+
|
|
185
|
+
### Areas to Verify with Actual CI
|
|
186
|
+
When the actual Culture Index survey is administered (after offer acceptance), verify:
|
|
187
|
+
1. [Trait with lower confidence]
|
|
188
|
+
2. [Trait that's critical for role]
|
|
189
|
+
3. [Any predicted trait that was borderline]
|
|
190
|
+
|
|
191
|
+
### If Hired: Onboarding Considerations
|
|
192
|
+
Based on predicted profile:
|
|
193
|
+
- [Onboarding consideration 1]
|
|
194
|
+
- [Onboarding consideration 2]
|
|
195
|
+
|
|
196
|
+
### Caveats
|
|
197
|
+
- This assessment uses predicted traits from interview analysis
|
|
198
|
+
- Interview behavior may differ from natural behavior
|
|
199
|
+
- Actual CI survey will be sent after offer acceptance
|
|
200
|
+
- Predictions should inform, not determine, hiring decisions
|
|
201
|
+
- Technical skills, experience, and cultural interview still matter
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
</process>
|
|
205
|
+
|
|
206
|
+
<anti_patterns>
|
|
207
|
+
|
|
208
|
+
Avoid these debrief mistakes:
|
|
209
|
+
|
|
210
|
+
- **Treating predictions as facts**: Low confidence predictions may be wrong
|
|
211
|
+
- **Over-weighting CI fit**: Skills, experience, and culture interview matter too
|
|
212
|
+
- **Automatic rejection on red flags**: Consider severity and role criticality
|
|
213
|
+
- **Ignoring interview performance**: CI predicts drives, not capabilities
|
|
214
|
+
- **Comparing to non-existent ideal**: No candidate is a perfect match
|
|
215
|
+
- **Forgetting the actual survey is coming**: Use predictions for preliminary assessment only
|
|
216
|
+
|
|
217
|
+
</anti_patterns>
|
|
218
|
+
|
|
219
|
+
<success_criteria>
|
|
220
|
+
|
|
221
|
+
Interview debrief is complete when:
|
|
222
|
+
- [ ] Predicted profile loaded with confidence levels
|
|
223
|
+
- [ ] Role requirements documented (from hiring profile or role-fit questions)
|
|
224
|
+
- [ ] Predicted vs required comparison completed
|
|
225
|
+
- [ ] Red flags checked
|
|
226
|
+
- [ ] Team fit assessed (if team data available)
|
|
227
|
+
- [ ] Manager fit assessed (if manager profile available)
|
|
228
|
+
- [ ] Confidence weighting applied
|
|
229
|
+
- [ ] Clear recommendation generated
|
|
230
|
+
- [ ] Areas to verify with actual CI identified
|
|
231
|
+
- [ ] Onboarding considerations noted
|
|
232
|
+
- [ ] Caveats about prediction limitations included
|
|
233
|
+
|
|
234
|
+
</success_criteria>
|
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
<required_reading>
|
|
2
|
+
|
|
3
|
+
**Read these reference files before mediation:**
|
|
4
|
+
1. `references/primary-traits.md` - A, B, C, D trait details
|
|
5
|
+
2. `references/team-composition.md` - Conflict pairs and friction patterns
|
|
6
|
+
3. `references/patterns-archetypes.md` - Pattern identification
|
|
7
|
+
|
|
8
|
+
</required_reading>
|
|
9
|
+
|
|
10
|
+
<purpose>
|
|
11
|
+
|
|
12
|
+
Understand why two team members aren't working well together using their Culture Index profiles. This workflow identifies trait-based friction sources and provides specific recommendations for improving the working relationship.
|
|
13
|
+
|
|
14
|
+
**Important:** CI explains behavioral friction, not personal conflict. If the conflict involves values, ethics, or performance issues, those require separate intervention.
|
|
15
|
+
|
|
16
|
+
</purpose>
|
|
17
|
+
|
|
18
|
+
<process>
|
|
19
|
+
|
|
20
|
+
**Step 1: Load Both Profiles**
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
Person A: [Name]
|
|
24
|
+
- Role: [Title]
|
|
25
|
+
- Pattern: [Archetype]
|
|
26
|
+
- A: [position relative to arrow]
|
|
27
|
+
- B: [position relative to arrow]
|
|
28
|
+
- C: [position relative to arrow]
|
|
29
|
+
- D: [position relative to arrow]
|
|
30
|
+
- EU Survey/Job: [values]
|
|
31
|
+
|
|
32
|
+
Person B: [Name]
|
|
33
|
+
- Role: [Title]
|
|
34
|
+
- Pattern: [Archetype]
|
|
35
|
+
- A: [position relative to arrow]
|
|
36
|
+
- B: [position relative to arrow]
|
|
37
|
+
- C: [position relative to arrow]
|
|
38
|
+
- D: [position relative to arrow]
|
|
39
|
+
- EU Survey/Job: [values]
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
**Step 2: Map Trait Differences**
|
|
43
|
+
|
|
44
|
+
Calculate the gap for each trait:
|
|
45
|
+
|
|
46
|
+
| Trait | Person A | Person B | Gap | On Same Side? |
|
|
47
|
+
|-------|----------|----------|-----|---------------|
|
|
48
|
+
| A | [pos] | [pos] | [diff] | [Yes/No] |
|
|
49
|
+
| B | [pos] | [pos] | [diff] | [Yes/No] |
|
|
50
|
+
| C | [pos] | [pos] | [diff] | [Yes/No] |
|
|
51
|
+
| D | [pos] | [pos] | [diff] | [Yes/No] |
|
|
52
|
+
|
|
53
|
+
**Highest friction risk:** Traits on opposite sides of arrow with large gaps.
|
|
54
|
+
|
|
55
|
+
**Step 3: Identify Primary Friction Source**
|
|
56
|
+
|
|
57
|
+
Match trait gaps to known friction patterns:
|
|
58
|
+
|
|
59
|
+
| Pattern | Source | How It Manifests |
|
|
60
|
+
|---------|--------|------------------|
|
|
61
|
+
| **High A vs Low A** | Independence vs collaboration | High A acts autonomously; Low A feels excluded. Low A seeks consensus; High A sees it as slow. |
|
|
62
|
+
| **High A vs High A** | Power struggle | Both want to lead, neither wants to defer. Competing visions. |
|
|
63
|
+
| **High B vs Low B** | Social energy mismatch | High B wants connection; Low B wants focus. High B feels rejected; Low B feels overwhelmed. |
|
|
64
|
+
| **High C vs Low C** | Pace mismatch | Low C creates urgency; High C resists rush. High C seems slow; Low C seems chaotic. |
|
|
65
|
+
| **High D vs Low D** | Detail orientation | High D focuses on precision; Low D on big picture. High D sees carelessness; Low D sees rigidity. |
|
|
66
|
+
| **High D vs High D** | Perfectionism clash | Both critical, both notice flaws. Can become mutual criticism spiral. |
|
|
67
|
+
|
|
68
|
+
**Your primary friction source:** [Identified pattern]
|
|
69
|
+
|
|
70
|
+
**Step 4: Understand Each Perspective**
|
|
71
|
+
|
|
72
|
+
Map how each person likely perceives the other:
|
|
73
|
+
|
|
74
|
+
**Person A ([Pattern]) likely sees Person B as:**
|
|
75
|
+
|
|
76
|
+
| Person A's Trait | Person B's Trait | Person A Perceives B As... |
|
|
77
|
+
|------------------|------------------|---------------------------|
|
|
78
|
+
| High A | Low A | Indecisive, slow, passive |
|
|
79
|
+
| Low A | High A | Aggressive, selfish, dismissive |
|
|
80
|
+
| High B | Low B | Cold, unfriendly, disconnected |
|
|
81
|
+
| Low B | High B | Chatty, distracting, inefficient |
|
|
82
|
+
| High C | Low C | Chaotic, impatient, disruptive |
|
|
83
|
+
| Low C | High C | Slow, resistant, inflexible |
|
|
84
|
+
| High D | Low D | Sloppy, unreliable, careless |
|
|
85
|
+
| Low D | High D | Rigid, nitpicky, controlling |
|
|
86
|
+
|
|
87
|
+
**Person B ([Pattern]) likely sees Person A as:**
|
|
88
|
+
[Same analysis from B's perspective]
|
|
89
|
+
|
|
90
|
+
**Step 5: Assess Relationship Structure**
|
|
91
|
+
|
|
92
|
+
What is their working relationship?
|
|
93
|
+
|
|
94
|
+
| Relationship | Additional Dynamics |
|
|
95
|
+
|--------------|---------------------|
|
|
96
|
+
| Peers | No hierarchy - must find middle ground |
|
|
97
|
+
| Manager → Report | Manager should adapt first (they have more power) |
|
|
98
|
+
| Report → Manager | Report may need environment change if mismatch is severe |
|
|
99
|
+
| Cross-functional | Different priorities compound trait friction |
|
|
100
|
+
| Close collaborators | Daily friction accumulates faster |
|
|
101
|
+
| Occasional interaction | May be able to limit contact |
|
|
102
|
+
|
|
103
|
+
**Their relationship:** [Type]
|
|
104
|
+
|
|
105
|
+
**Step 6: Generate Mediation Approach**
|
|
106
|
+
|
|
107
|
+
Based on friction source, recommend approach:
|
|
108
|
+
|
|
109
|
+
**For High A vs Low A friction:**
|
|
110
|
+
- Clarify decision rights (who owns what)
|
|
111
|
+
- High A: Give Low A explicit input time before decisions
|
|
112
|
+
- Low A: Understand High A's autonomy need isn't personal
|
|
113
|
+
- Process: Defined consultation points before independent action
|
|
114
|
+
|
|
115
|
+
**For High B vs Low B friction:**
|
|
116
|
+
- Acknowledge different social needs
|
|
117
|
+
- High B: Reduce expectations for social interaction from Low B
|
|
118
|
+
- Low B: Commit to minimal connection (brief check-ins)
|
|
119
|
+
- Process: Scheduled, bounded social interaction
|
|
120
|
+
|
|
121
|
+
**For High C vs Low C friction:**
|
|
122
|
+
- Acknowledge pace difference as legitimate
|
|
123
|
+
- Low C: Give advance notice of urgent requests
|
|
124
|
+
- High C: Accept some urgency is real, build buffer time
|
|
125
|
+
- Process: Deadlines set with High C's processing time in mind
|
|
126
|
+
|
|
127
|
+
**For High D vs Low D friction:**
|
|
128
|
+
- Acknowledge different detail orientations
|
|
129
|
+
- High D: Accept "good enough" for some work
|
|
130
|
+
- Low D: Use systems to catch critical details
|
|
131
|
+
- Process: Clear quality standards for each deliverable type
|
|
132
|
+
|
|
133
|
+
**For High A vs High A friction:**
|
|
134
|
+
- Clear domain ownership (separate turfs)
|
|
135
|
+
- Explicit agreement on shared decisions
|
|
136
|
+
- Regular alignment to prevent divergent directions
|
|
137
|
+
- Process: Leadership defines who owns what
|
|
138
|
+
|
|
139
|
+
**Your mediation approach:**
|
|
140
|
+
1. [Specific recommendation]
|
|
141
|
+
2. [Specific recommendation]
|
|
142
|
+
3. [Specific recommendation]
|
|
143
|
+
|
|
144
|
+
**Step 7: Design Process Changes**
|
|
145
|
+
|
|
146
|
+
Beyond individual adjustments, what process changes would help?
|
|
147
|
+
|
|
148
|
+
| Friction Source | Process Solution |
|
|
149
|
+
|-----------------|------------------|
|
|
150
|
+
| Pace mismatch | Define response time expectations, meeting cadence |
|
|
151
|
+
| Decision friction | RACI or decision rights matrix |
|
|
152
|
+
| Communication style | Agree on preferred channels, formats |
|
|
153
|
+
| Detail orientation | Define quality gates and checklists |
|
|
154
|
+
| Social needs | Protected focus time vs collaboration time |
|
|
155
|
+
|
|
156
|
+
**Recommended process changes:**
|
|
157
|
+
1. [Specific process change]
|
|
158
|
+
2. [Specific process change]
|
|
159
|
+
|
|
160
|
+
**Step 8: Identify What Won't Change**
|
|
161
|
+
|
|
162
|
+
CI traits are hardwired. Set realistic expectations:
|
|
163
|
+
|
|
164
|
+
| Person | Trait | Will Not Change |
|
|
165
|
+
|--------|-------|-----------------|
|
|
166
|
+
| [Name] | [trait] | [behavior that won't change] |
|
|
167
|
+
| [Name] | [trait] | [behavior that won't change] |
|
|
168
|
+
|
|
169
|
+
**Accept that:**
|
|
170
|
+
- [Person A] will continue to [trait-driven behavior]
|
|
171
|
+
- [Person B] will continue to [trait-driven behavior]
|
|
172
|
+
|
|
173
|
+
The goal is accommodation, not transformation.
|
|
174
|
+
|
|
175
|
+
**Step 9: Check Energy Levels**
|
|
176
|
+
|
|
177
|
+
Review EU utilization for both parties:
|
|
178
|
+
|
|
179
|
+
| Person | EU Survey | EU Job | Utilization | Status |
|
|
180
|
+
|--------|-----------|--------|-------------|--------|
|
|
181
|
+
| [A] | [val] | [val] | [%] | [Healthy/Stress/Frustration] |
|
|
182
|
+
| [B] | [val] | [val] | [%] | [Healthy/Stress/Frustration] |
|
|
183
|
+
|
|
184
|
+
**If either is in stress/frustration:**
|
|
185
|
+
- The conflict may be intensifying natural friction
|
|
186
|
+
- Address the energy drain as part of mediation
|
|
187
|
+
- Consider workload or role adjustment
|
|
188
|
+
|
|
189
|
+
**Step 10: Compile Mediation Summary**
|
|
190
|
+
|
|
191
|
+
```markdown
|
|
192
|
+
## Conflict Analysis: [Person A] & [Person B]
|
|
193
|
+
|
|
194
|
+
**Date:** [Date]
|
|
195
|
+
**Relationship:** [Peers / Manager-Report / etc.]
|
|
196
|
+
|
|
197
|
+
### Profile Comparison
|
|
198
|
+
|
|
199
|
+
| Trait | Person A | Person B | Gap |
|
|
200
|
+
|-------|----------|----------|-----|
|
|
201
|
+
| A | [pos] | [pos] | [diff] |
|
|
202
|
+
| B | [pos] | [pos] | [diff] |
|
|
203
|
+
| C | [pos] | [pos] | [diff] |
|
|
204
|
+
| D | [pos] | [pos] | [diff] |
|
|
205
|
+
|
|
206
|
+
**Person A Pattern:** [Archetype]
|
|
207
|
+
**Person B Pattern:** [Archetype]
|
|
208
|
+
|
|
209
|
+
### Primary Friction Source
|
|
210
|
+
**[Identified pattern]**
|
|
211
|
+
|
|
212
|
+
[1-2 sentence explanation of the core conflict driver]
|
|
213
|
+
|
|
214
|
+
### How They See Each Other
|
|
215
|
+
|
|
216
|
+
**Person A likely perceives Person B as:**
|
|
217
|
+
- [perception based on trait gap]
|
|
218
|
+
|
|
219
|
+
**Person B likely perceives Person A as:**
|
|
220
|
+
- [perception based on trait gap]
|
|
221
|
+
|
|
222
|
+
### Recommendations
|
|
223
|
+
|
|
224
|
+
**For Person A:**
|
|
225
|
+
1. [Specific adjustment]
|
|
226
|
+
2. [Specific adjustment]
|
|
227
|
+
|
|
228
|
+
**For Person B:**
|
|
229
|
+
1. [Specific adjustment]
|
|
230
|
+
2. [Specific adjustment]
|
|
231
|
+
|
|
232
|
+
**Process Changes:**
|
|
233
|
+
1. [Process change to reduce friction]
|
|
234
|
+
2. [Process change to reduce friction]
|
|
235
|
+
|
|
236
|
+
### What Won't Change
|
|
237
|
+
- [Person A] will continue to [trait behavior] - this is hardwired
|
|
238
|
+
- [Person B] will continue to [trait behavior] - this is hardwired
|
|
239
|
+
|
|
240
|
+
The goal is accommodation, not transformation.
|
|
241
|
+
|
|
242
|
+
### Energy Status
|
|
243
|
+
- Person A: [EU utilization status]
|
|
244
|
+
- Person B: [EU utilization status]
|
|
245
|
+
|
|
246
|
+
[Note any energy concerns]
|
|
247
|
+
|
|
248
|
+
### Conversation Guide
|
|
249
|
+
|
|
250
|
+
**Frame the discussion as:**
|
|
251
|
+
- Different working styles, not personal conflict
|
|
252
|
+
- Both approaches are valid
|
|
253
|
+
- Goal is finding workable middle ground
|
|
254
|
+
|
|
255
|
+
**Avoid:**
|
|
256
|
+
- Labeling either person's style as "wrong"
|
|
257
|
+
- Expecting either to fundamentally change
|
|
258
|
+
- Assuming one must adapt more than the other (unless manager-report)
|
|
259
|
+
|
|
260
|
+
### Success Indicators
|
|
261
|
+
After mediation, look for:
|
|
262
|
+
- [ ] Reduced friction in [specific interaction type]
|
|
263
|
+
- [ ] Both parties feeling heard
|
|
264
|
+
- [ ] Workable process in place for [friction point]
|
|
265
|
+
- [ ] Energy levels stabilizing (if previously stressed)
|
|
266
|
+
|
|
267
|
+
### Escalation Criteria
|
|
268
|
+
Escalate beyond CI-based mediation if:
|
|
269
|
+
- Conflict involves values, ethics, or harassment
|
|
270
|
+
- Performance issues underlie the conflict
|
|
271
|
+
- Either party is unwilling to accommodate
|
|
272
|
+
- Energy utilization continues declining
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
</process>
|
|
276
|
+
|
|
277
|
+
<anti_patterns>
|
|
278
|
+
|
|
279
|
+
Avoid these mediation mistakes:
|
|
280
|
+
|
|
281
|
+
- **Blaming one party**: Both profiles contribute to friction
|
|
282
|
+
- **Expecting transformation**: CI traits don't change - environment does
|
|
283
|
+
- **Ignoring power dynamics**: Manager-report relationships require manager to adapt first
|
|
284
|
+
- **Over-attributing to CI**: Not all conflict is trait-based
|
|
285
|
+
- **Generic advice**: Recommendations must be specific to their trait gaps
|
|
286
|
+
- **Forgetting EU signals**: Energy drain indicates escalating friction
|
|
287
|
+
|
|
288
|
+
</anti_patterns>
|
|
289
|
+
|
|
290
|
+
<success_criteria>
|
|
291
|
+
|
|
292
|
+
Conflict mediation is complete when:
|
|
293
|
+
- [ ] Both profiles loaded and compared
|
|
294
|
+
- [ ] All trait gaps calculated
|
|
295
|
+
- [ ] Primary friction source identified
|
|
296
|
+
- [ ] Each person's perspective mapped
|
|
297
|
+
- [ ] Relationship structure considered
|
|
298
|
+
- [ ] Specific recommendations for each person
|
|
299
|
+
- [ ] Process changes identified
|
|
300
|
+
- [ ] Hardwired behaviors acknowledged (won't change)
|
|
301
|
+
- [ ] EU levels checked
|
|
302
|
+
- [ ] Conversation guide provided
|
|
303
|
+
- [ ] Success indicators defined
|
|
304
|
+
- [ ] Escalation criteria noted
|
|
305
|
+
|
|
306
|
+
</success_criteria>
|