@rfxlamia/skillkit 1.0.0
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 +16 -0
- package/agents/creative-copywriter.md +212 -0
- package/agents/dario-amodei.md +135 -0
- package/agents/doc-simplifier.md +63 -0
- package/agents/kotlin-pro.md +433 -0
- package/agents/red-team.md +136 -0
- package/agents/sam-altman.md +121 -0
- package/agents/seo-manager.md +184 -0
- package/bin/skillkit.js +3 -0
- package/package.json +35 -0
- package/skills/adversarial-review/SKILL.md +219 -0
- package/skills/baby-education/SKILL.md +260 -0
- package/skills/baby-education/references/advanced-techniques.md +323 -0
- package/skills/baby-education/references/transformations.md +345 -0
- package/skills/been-there-done-that/SKILL.md +455 -0
- package/skills/been-there-done-that/references/analysis-patterns.md +162 -0
- package/skills/been-there-done-that/references/git-commands.md +132 -0
- package/skills/been-there-done-that/references/tree-insertion-logic.md +145 -0
- package/skills/coolhunter/SKILL.md +270 -0
- package/skills/coolhunter/assets/elicitation-methods.csv +51 -0
- package/skills/coolhunter/knowledge/elicitation-methods.md +312 -0
- package/skills/coolhunter/references/workflow-execution.md +238 -0
- package/skills/coolhunter/workflow-plan-coolhunter.md +232 -0
- package/skills/creative-copywriting/SKILL.md +324 -0
- package/skills/creative-copywriting/databases/README.md +60 -0
- package/skills/creative-copywriting/databases/carousel-structures.csv +16 -0
- package/skills/creative-copywriting/databases/emotional-arcs.csv +11 -0
- package/skills/creative-copywriting/databases/hook-formulas.csv +51 -0
- package/skills/creative-copywriting/databases/power-words.csv +201 -0
- package/skills/creative-copywriting/databases/psychological-triggers.csv +21 -0
- package/skills/creative-copywriting/databases/read-more-patterns.csv +26 -0
- package/skills/creative-copywriting/databases/swipe-triggers.csv +31 -0
- package/skills/creative-copywriting/references/carousel-psychology.md +223 -0
- package/skills/creative-copywriting/references/hook-anatomy.md +169 -0
- package/skills/creative-copywriting/references/power-word-science.md +134 -0
- package/skills/creative-copywriting/references/storytelling-frameworks.md +157 -0
- package/skills/diverse-content-gen/SKILL.md +201 -0
- package/skills/diverse-content-gen/references/advanced-techniques.md +320 -0
- package/skills/diverse-content-gen/references/research-findings.md +379 -0
- package/skills/diverse-content-gen/references/task-workflows.md +241 -0
- package/skills/diverse-content-gen/references/tool-integration.md +419 -0
- package/skills/diverse-content-gen/references/troubleshooting.md +426 -0
- package/skills/diverse-content-gen/references/vs-core-technique.md +240 -0
- package/skills/framework-critical-thinking/SKILL.md +220 -0
- package/skills/framework-critical-thinking/references/bias_detector.md +375 -0
- package/skills/framework-critical-thinking/references/fallback_handler.md +239 -0
- package/skills/framework-critical-thinking/references/memory_curator.md +161 -0
- package/skills/framework-critical-thinking/references/metacognitive_monitor.md +297 -0
- package/skills/framework-critical-thinking/references/producer_critic_orchestrator.md +333 -0
- package/skills/framework-critical-thinking/references/reasoning_router.md +235 -0
- package/skills/framework-critical-thinking/references/reasoning_validator.md +97 -0
- package/skills/framework-critical-thinking/references/reflection_trigger.md +78 -0
- package/skills/framework-critical-thinking/references/self_verification.md +388 -0
- package/skills/framework-critical-thinking/references/uncertainty_quantifier.md +207 -0
- package/skills/framework-initiative/SKILL.md +231 -0
- package/skills/framework-initiative/references/examples.md +150 -0
- package/skills/framework-initiative/references/impact-analysis.md +157 -0
- package/skills/framework-initiative/references/intent-patterns.md +145 -0
- package/skills/framework-initiative/references/star-framework.md +165 -0
- package/skills/humanize-docs/SKILL.md +203 -0
- package/skills/humanize-docs/references/advanced-techniques.md +13 -0
- package/skills/humanize-docs/references/core-transformations.md +368 -0
- package/skills/humanize-docs/references/detection-patterns.md +400 -0
- package/skills/humanize-docs/references/examples-gallery.md +374 -0
- package/skills/imagine/SKILL.md +190 -0
- package/skills/imagine/references/artstyle-corporate-memphis.md +625 -0
- package/skills/imagine/references/artstyle-crewdson-hyperrealism.md +295 -0
- package/skills/imagine/references/artstyle-iphone-social-media.md +426 -0
- package/skills/imagine/references/artstyle-sciencesaru.md +276 -0
- package/skills/pre-deploy-checklist/README.md +26 -0
- package/skills/pre-deploy-checklist/SKILL.md +153 -0
- package/skills/pre-deploy-checklist/references/checklist-categories.md +174 -0
- package/skills/pre-deploy-checklist/references/domain-prompts.md +216 -0
- package/skills/prompt-engineering/SKILL.md +209 -0
- package/skills/prompt-engineering/references/advanced-combinations.md +444 -0
- package/skills/prompt-engineering/references/chain-of-thought.md +140 -0
- package/skills/prompt-engineering/references/decision_matrix.md +220 -0
- package/skills/prompt-engineering/references/few-shot.md +346 -0
- package/skills/prompt-engineering/references/json-format.md +270 -0
- package/skills/prompt-engineering/references/natural-language.md +420 -0
- package/skills/prompt-engineering/references/pitfalls.md +365 -0
- package/skills/prompt-engineering/references/prompt-chaining.md +498 -0
- package/skills/prompt-engineering/references/react.md +108 -0
- package/skills/prompt-engineering/references/self-consistency.md +322 -0
- package/skills/prompt-engineering/references/tree-of-thoughts.md +386 -0
- package/skills/prompt-engineering/references/xml-format.md +220 -0
- package/skills/prompt-engineering/references/yaml-format.md +488 -0
- package/skills/prompt-engineering/references/zero-shot.md +74 -0
- package/skills/quick-spec/SKILL.md +280 -0
- package/skills/quick-spec/assets/tech-spec-template.md +74 -0
- package/skills/quick-spec/references/step-01-understand.md +189 -0
- package/skills/quick-spec/references/step-02-investigate.md +144 -0
- package/skills/quick-spec/references/step-03-generate.md +128 -0
- package/skills/quick-spec/references/step-04-review.md +173 -0
- package/skills/quick-spec/tests/test_scenarios.md +83 -0
- package/skills/quick-spec/tests/test_skill.py +136 -0
- package/skills/readme-expert/SKILL.md +538 -0
- package/skills/readme-expert/knowledge/INDEX.md +192 -0
- package/skills/readme-expert/knowledge/application/quality-standards.md +470 -0
- package/skills/readme-expert/knowledge/application/script-executor.md +604 -0
- package/skills/readme-expert/knowledge/application/template-library.md +822 -0
- package/skills/readme-expert/knowledge/foundation/codebase-scanner.md +361 -0
- package/skills/readme-expert/knowledge/foundation/validation-checklist.md +481 -0
- package/skills/red-teaming/SKILL.md +321 -0
- package/skills/red-teaming/references/ai-llm-redteam.md +517 -0
- package/skills/red-teaming/references/attack-techniques.md +410 -0
- package/skills/red-teaming/references/cybersecurity-redteam.md +383 -0
- package/skills/red-teaming/references/tools-frameworks.md +446 -0
- package/skills/releasing/.skillkit-mode +1 -0
- package/skills/releasing/SKILL.md +225 -0
- package/skills/releasing/references/version-detection.md +108 -0
- package/skills/screenwriter/SKILL.md +273 -0
- package/skills/screenwriter/references/advanced-techniques.md +216 -0
- package/skills/screenwriter/references/pipeline-integration.md +266 -0
- package/skills/skillkit/.claude-plugin/plugin.json +27 -0
- package/skills/skillkit/CHANGELOG.md +484 -0
- package/skills/skillkit/SKILL.md +511 -0
- package/skills/skillkit/commands/skillkit.md +6 -0
- package/skills/skillkit/commands/validate-plan.md +6 -0
- package/skills/skillkit/commands/verify.md +6 -0
- package/skills/skillkit/knowledge/INDEX.md +352 -0
- package/skills/skillkit/knowledge/application/09-case-studies.md +257 -0
- package/skills/skillkit/knowledge/application/10-technical-architecture.md +324 -0
- package/skills/skillkit/knowledge/application/11-adoption-strategy.md +267 -0
- package/skills/skillkit/knowledge/application/12-testing-and-validation.md +276 -0
- package/skills/skillkit/knowledge/application/13-competitive-landscape.md +198 -0
- package/skills/skillkit/knowledge/foundation/01-why-skills-exist.md +246 -0
- package/skills/skillkit/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
- package/skills/skillkit/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
- package/skills/skillkit/knowledge/foundation/04-hybrid-patterns.md +308 -0
- package/skills/skillkit/knowledge/foundation/05-token-economics.md +275 -0
- package/skills/skillkit/knowledge/foundation/06-platform-constraints.md +237 -0
- package/skills/skillkit/knowledge/foundation/07-security-concerns.md +322 -0
- package/skills/skillkit/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
- package/skills/skillkit/knowledge/plugin-guide.md +614 -0
- package/skills/skillkit/knowledge/tools/14-validation-tools-guide.md +150 -0
- package/skills/skillkit/knowledge/tools/15-cost-tools-guide.md +157 -0
- package/skills/skillkit/knowledge/tools/16-security-tools-guide.md +122 -0
- package/skills/skillkit/knowledge/tools/17-pattern-tools-guide.md +161 -0
- package/skills/skillkit/knowledge/tools/18-decision-helper-guide.md +243 -0
- package/skills/skillkit/knowledge/tools/19-test-generator-guide.md +275 -0
- package/skills/skillkit/knowledge/tools/20-split-skill-guide.md +149 -0
- package/skills/skillkit/knowledge/tools/21-quality-scorer-guide.md +226 -0
- package/skills/skillkit/knowledge/tools/22-migration-helper-guide.md +356 -0
- package/skills/skillkit/knowledge/tools/23-subagent-creation-guide.md +448 -0
- package/skills/skillkit/knowledge/tools/24-behavioral-testing-guide.md +122 -0
- package/skills/skillkit/references/proposal-generation.md +982 -0
- package/skills/skillkit/references/rationalization-catalog.md +75 -0
- package/skills/skillkit/references/research-methodology.md +661 -0
- package/skills/skillkit/references/section-2-full-creation-workflow.md +452 -0
- package/skills/skillkit/references/section-3-validation-workflow-existing-skill.md +63 -0
- package/skills/skillkit/references/section-4-decision-workflow-skills-vs-subagents.md +64 -0
- package/skills/skillkit/references/section-5-migration-workflow-doc-to-skill.md +58 -0
- package/skills/skillkit/references/section-6-subagent-creation-workflow.md +499 -0
- package/skills/skillkit/references/section-7-knowledge-reference-map.md +72 -0
- package/skills/skillkit/scripts/decision_helper.py +799 -0
- package/skills/skillkit/scripts/init_skill.py +400 -0
- package/skills/skillkit/scripts/init_subagent.py +231 -0
- package/skills/skillkit/scripts/migration_helper.py +669 -0
- package/skills/skillkit/scripts/package_skill.py +211 -0
- package/skills/skillkit/scripts/pattern_detector.py +381 -0
- package/skills/skillkit/scripts/pattern_detector_new.py +382 -0
- package/skills/skillkit/scripts/pressure_tester.py +157 -0
- package/skills/skillkit/scripts/quality_scorer.py +999 -0
- package/skills/skillkit/scripts/quick_validate.py +100 -0
- package/skills/skillkit/scripts/security_scanner.py +474 -0
- package/skills/skillkit/scripts/split_skill.py +540 -0
- package/skills/skillkit/scripts/test_generator.py +695 -0
- package/skills/skillkit/scripts/token_estimator.py +493 -0
- package/skills/skillkit/scripts/utils/__init__.py +49 -0
- package/skills/skillkit/scripts/utils/budget_tracker.py +388 -0
- package/skills/skillkit/scripts/utils/output_formatter.py +263 -0
- package/skills/skillkit/scripts/utils/reference_validator.py +401 -0
- package/skills/skillkit/scripts/validate_skill.py +594 -0
- package/skills/skillkit/tests/test_behavioral.py +39 -0
- package/skills/skillkit/tests/test_scenarios.md +83 -0
- package/skills/skillkit/tests/test_skill.py +136 -0
- package/skills/social-media-seo/SKILL.md +278 -0
- package/skills/social-media-seo/databases/caption-styles.csv +31 -0
- package/skills/social-media-seo/databases/engagement-tactics.csv +16 -0
- package/skills/social-media-seo/databases/hashtag-strategies.csv +21 -0
- package/skills/social-media-seo/databases/hook-formulas.csv +26 -0
- package/skills/social-media-seo/databases/keyword-clusters.csv +11 -0
- package/skills/social-media-seo/databases/thread-structures.csv +26 -0
- package/skills/social-media-seo/databases/viral-patterns.csv +21 -0
- package/skills/social-media-seo/references/analytics-guide.md +321 -0
- package/skills/social-media-seo/references/instagram-seo.md +235 -0
- package/skills/social-media-seo/references/threads-seo.md +305 -0
- package/skills/social-media-seo/references/x-twitter-seo.md +337 -0
- package/skills/social-media-seo/scripts/query_database.py +191 -0
- package/skills/storyteller/SKILL.md +241 -0
- package/skills/storyteller/references/transformation-methodology.md +293 -0
- package/skills/storyteller/references/visual-vocabulary.md +177 -0
- package/skills/thread-pro/SKILL.md +162 -0
- package/skills/thread-pro/anti-ai-patterns.md +120 -0
- package/skills/thread-pro/hook-formulas.md +138 -0
- package/skills/thread-pro/references/anti-ai-patterns.md +120 -0
- package/skills/thread-pro/references/hook-formulas.md +138 -0
- package/skills/thread-pro/references/thread-structures.md +240 -0
- package/skills/thread-pro/references/voice-injection.md +130 -0
- package/skills/thread-pro/thread-structures.md +240 -0
- package/skills/thread-pro/voice-injection.md +130 -0
- package/skills/tinkering/SKILL.md +251 -0
- package/skills/tinkering/references/graduation-checklist.md +100 -0
- package/skills/validate-plan/.skillkit-mode +1 -0
- package/skills/validate-plan/SKILL.md +406 -0
- package/skills/validate-plan/references/dry-principles.md +251 -0
- package/skills/validate-plan/references/gap-analysis-guide.md +320 -0
- package/skills/validate-plan/references/tdd-patterns.md +413 -0
- package/skills/validate-plan/references/yagni-checklist.md +330 -0
- package/skills/verify-before-ship/.skillkit-mode +1 -0
- package/skills/verify-before-ship/SKILL.md +116 -0
- package/skills/verify-before-ship/references/anti-rationalization.md +212 -0
- package/skills/verify-before-ship/references/verification-gates.md +305 -0
- package/skills-manifest.json +217 -0
- package/src/banner.js +10 -0
- package/src/cli.js +30 -0
- package/src/install.js +53 -0
- package/src/install.test.js +40 -0
- package/src/picker.js +74 -0
- package/src/picker.test.js +21 -0
- package/src/scope.js +57 -0
- package/src/scope.test.js +19 -0
- package/src/update.js +34 -0
- package/src/update.test.js +24 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Test Scenarios: skillkit
|
|
2
|
+
|
|
3
|
+
**Generated:** Auto-generated from SKILL.md
|
|
4
|
+
**Coverage:** standard
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## P0 Tests (11)
|
|
8
|
+
|
|
9
|
+
### Test basic skill invocation
|
|
10
|
+
- **Category:** functional
|
|
11
|
+
- **Expected:** Skill loads and responds to trigger
|
|
12
|
+
- **Test Data:** minimal_valid
|
|
13
|
+
|
|
14
|
+
### Test creating and validating skills and subagents with
|
|
15
|
+
- **Category:** functional
|
|
16
|
+
- **Expected:** Skill successfully handles: creating and validating skills and subagents with
|
|
17
|
+
- **Test Data:** valid_input
|
|
18
|
+
|
|
19
|
+
### Test consistent high-quality outputs with
|
|
20
|
+
- **Category:** functional
|
|
21
|
+
- **Expected:** Skill successfully handles: consistent high-quality outputs with
|
|
22
|
+
- **Test Data:** valid_input
|
|
23
|
+
|
|
24
|
+
### Test multiple routes match, or intent is ambiguous, agent MUST stop and ask user to choose one route.
|
|
25
|
+
- **Category:** functional
|
|
26
|
+
- **Expected:** Skill successfully handles: multiple routes match, or intent is ambiguous, agent MUST stop and ask user to choose one route.
|
|
27
|
+
- **Test Data:** valid_input
|
|
28
|
+
|
|
29
|
+
### Test workflow mode before running the creation flow.
|
|
30
|
+
- **Category:** functional
|
|
31
|
+
- **Expected:** Skill successfully handles: workflow mode before running the creation flow.
|
|
32
|
+
- **Test Data:** valid_input
|
|
33
|
+
|
|
34
|
+
### Test mode is not explicitly provided by user, agent MUST stop and ask:
|
|
35
|
+
- **Category:** functional
|
|
36
|
+
- **Expected:** Skill successfully handles: mode is not explicitly provided by user, agent MUST stop and ask:
|
|
37
|
+
- **Test Data:** valid_input
|
|
38
|
+
|
|
39
|
+
### Test mode is not explicitly known.
|
|
40
|
+
- **Category:** functional
|
|
41
|
+
- **Expected:** Skill successfully handles: mode is not explicitly known.
|
|
42
|
+
- **Test Data:** valid_input
|
|
43
|
+
|
|
44
|
+
### Test `.skillkit-mode` contains `fast` or marker does not exist.
|
|
45
|
+
- **Category:** functional
|
|
46
|
+
- **Expected:** Skill successfully handles: `.skillkit-mode` contains `fast` or marker does not exist.
|
|
47
|
+
- **Test Data:** valid_input
|
|
48
|
+
|
|
49
|
+
### Test `.skillkit-mode` contains `full`.
|
|
50
|
+
- **Category:** functional
|
|
51
|
+
- **Expected:** Skill successfully handles: `.skillkit-mode` contains `full`.
|
|
52
|
+
- **Test Data:** valid_input
|
|
53
|
+
|
|
54
|
+
### Test each step listed in that file, then follow them in order.**
|
|
55
|
+
- **Category:** functional
|
|
56
|
+
- **Expected:** Skill successfully handles: each step listed in that file, then follow them in order.**
|
|
57
|
+
- **Test Data:** valid_input
|
|
58
|
+
|
|
59
|
+
### Test still unknown: stop and ask user to choose `fast` or `full`
|
|
60
|
+
- **Category:** functional
|
|
61
|
+
- **Expected:** Skill successfully handles: still unknown: stop and ask user to choose `fast` or `full`
|
|
62
|
+
- **Test Data:** valid_input
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
## P1 Tests (2)
|
|
66
|
+
|
|
67
|
+
### Test with minimal input
|
|
68
|
+
- **Category:** edge_case
|
|
69
|
+
- **Expected:** Graceful handling of minimal valid input
|
|
70
|
+
- **Test Data:** minimal
|
|
71
|
+
|
|
72
|
+
### Test with maximum/complex input
|
|
73
|
+
- **Category:** edge_case
|
|
74
|
+
- **Expected:** Proper handling of complex scenarios
|
|
75
|
+
- **Test Data:** complex
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## Setup
|
|
79
|
+
|
|
80
|
+
1. Install dependencies: `pip install pytest` (or unittest)
|
|
81
|
+
2. Review test scenarios above
|
|
82
|
+
3. Implement test logic in test files
|
|
83
|
+
4. Run tests: `pytest tests/`
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Pytest tests for skillkit
|
|
3
|
+
Auto-generated - customize as needed
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import pytest
|
|
7
|
+
|
|
8
|
+
def test_test_basic_skill_invocation():
|
|
9
|
+
"""
|
|
10
|
+
Test basic skill invocation
|
|
11
|
+
Priority: P0
|
|
12
|
+
Expected: Skill loads and responds to trigger
|
|
13
|
+
"""
|
|
14
|
+
# TODO: Implement test logic
|
|
15
|
+
# Test data: minimal_valid
|
|
16
|
+
assert True, 'Test not implemented yet'
|
|
17
|
+
|
|
18
|
+
def test_test_creating_and_validating_skills_and_subagents():
|
|
19
|
+
"""
|
|
20
|
+
Test creating and validating skills and subagents with
|
|
21
|
+
Priority: P0
|
|
22
|
+
Expected: Skill successfully handles: creating and validating skills and subagents with
|
|
23
|
+
"""
|
|
24
|
+
# TODO: Implement test logic
|
|
25
|
+
# Test data: valid_input
|
|
26
|
+
assert True, 'Test not implemented yet'
|
|
27
|
+
|
|
28
|
+
def test_test_consistent_highquality_outputs_with():
|
|
29
|
+
"""
|
|
30
|
+
Test consistent high-quality outputs with
|
|
31
|
+
Priority: P0
|
|
32
|
+
Expected: Skill successfully handles: consistent high-quality outputs with
|
|
33
|
+
"""
|
|
34
|
+
# TODO: Implement test logic
|
|
35
|
+
# Test data: valid_input
|
|
36
|
+
assert True, 'Test not implemented yet'
|
|
37
|
+
|
|
38
|
+
def test_test_multiple_routes_match_or_intent_is_ambiguous():
|
|
39
|
+
"""
|
|
40
|
+
Test multiple routes match, or intent is ambiguous, agent MUST stop and ask user to choose one route.
|
|
41
|
+
Priority: P0
|
|
42
|
+
Expected: Skill successfully handles: multiple routes match, or intent is ambiguous, agent MUST stop and ask user to choose one route.
|
|
43
|
+
"""
|
|
44
|
+
# TODO: Implement test logic
|
|
45
|
+
# Test data: valid_input
|
|
46
|
+
assert True, 'Test not implemented yet'
|
|
47
|
+
|
|
48
|
+
def test_test_workflow_mode_before_running_the_creation_flo():
|
|
49
|
+
"""
|
|
50
|
+
Test workflow mode before running the creation flow.
|
|
51
|
+
Priority: P0
|
|
52
|
+
Expected: Skill successfully handles: workflow mode before running the creation flow.
|
|
53
|
+
"""
|
|
54
|
+
# TODO: Implement test logic
|
|
55
|
+
# Test data: valid_input
|
|
56
|
+
assert True, 'Test not implemented yet'
|
|
57
|
+
|
|
58
|
+
def test_test_mode_is_not_explicitly_provided_by_user_agent():
|
|
59
|
+
"""
|
|
60
|
+
Test mode is not explicitly provided by user, agent MUST stop and ask:
|
|
61
|
+
Priority: P0
|
|
62
|
+
Expected: Skill successfully handles: mode is not explicitly provided by user, agent MUST stop and ask:
|
|
63
|
+
"""
|
|
64
|
+
# TODO: Implement test logic
|
|
65
|
+
# Test data: valid_input
|
|
66
|
+
assert True, 'Test not implemented yet'
|
|
67
|
+
|
|
68
|
+
def test_test_mode_is_not_explicitly_known():
|
|
69
|
+
"""
|
|
70
|
+
Test mode is not explicitly known.
|
|
71
|
+
Priority: P0
|
|
72
|
+
Expected: Skill successfully handles: mode is not explicitly known.
|
|
73
|
+
"""
|
|
74
|
+
# TODO: Implement test logic
|
|
75
|
+
# Test data: valid_input
|
|
76
|
+
assert True, 'Test not implemented yet'
|
|
77
|
+
|
|
78
|
+
def test_test_skillkitmode_contains_fast_or_marker_does_not():
|
|
79
|
+
"""
|
|
80
|
+
Test `.skillkit-mode` contains `fast` or marker does not exist.
|
|
81
|
+
Priority: P0
|
|
82
|
+
Expected: Skill successfully handles: `.skillkit-mode` contains `fast` or marker does not exist.
|
|
83
|
+
"""
|
|
84
|
+
# TODO: Implement test logic
|
|
85
|
+
# Test data: valid_input
|
|
86
|
+
assert True, 'Test not implemented yet'
|
|
87
|
+
|
|
88
|
+
def test_test_skillkitmode_contains_full():
|
|
89
|
+
"""
|
|
90
|
+
Test `.skillkit-mode` contains `full`.
|
|
91
|
+
Priority: P0
|
|
92
|
+
Expected: Skill successfully handles: `.skillkit-mode` contains `full`.
|
|
93
|
+
"""
|
|
94
|
+
# TODO: Implement test logic
|
|
95
|
+
# Test data: valid_input
|
|
96
|
+
assert True, 'Test not implemented yet'
|
|
97
|
+
|
|
98
|
+
def test_test_each_step_listed_in_that_file_then_follow_the():
|
|
99
|
+
"""
|
|
100
|
+
Test each step listed in that file, then follow them in order.**
|
|
101
|
+
Priority: P0
|
|
102
|
+
Expected: Skill successfully handles: each step listed in that file, then follow them in order.**
|
|
103
|
+
"""
|
|
104
|
+
# TODO: Implement test logic
|
|
105
|
+
# Test data: valid_input
|
|
106
|
+
assert True, 'Test not implemented yet'
|
|
107
|
+
|
|
108
|
+
def test_test_still_unknown_stop_and_ask_user_to_choose_fas():
|
|
109
|
+
"""
|
|
110
|
+
Test still unknown: stop and ask user to choose `fast` or `full`
|
|
111
|
+
Priority: P0
|
|
112
|
+
Expected: Skill successfully handles: still unknown: stop and ask user to choose `fast` or `full`
|
|
113
|
+
"""
|
|
114
|
+
# TODO: Implement test logic
|
|
115
|
+
# Test data: valid_input
|
|
116
|
+
assert True, 'Test not implemented yet'
|
|
117
|
+
|
|
118
|
+
def test_test_with_minimal_input():
|
|
119
|
+
"""
|
|
120
|
+
Test with minimal input
|
|
121
|
+
Priority: P1
|
|
122
|
+
Expected: Graceful handling of minimal valid input
|
|
123
|
+
"""
|
|
124
|
+
# TODO: Implement test logic
|
|
125
|
+
# Test data: minimal
|
|
126
|
+
assert True, 'Test not implemented yet'
|
|
127
|
+
|
|
128
|
+
def test_test_with_maximumcomplex_input():
|
|
129
|
+
"""
|
|
130
|
+
Test with maximum/complex input
|
|
131
|
+
Priority: P1
|
|
132
|
+
Expected: Proper handling of complex scenarios
|
|
133
|
+
"""
|
|
134
|
+
# TODO: Implement test logic
|
|
135
|
+
# Test data: complex
|
|
136
|
+
assert True, 'Test not implemented yet'
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: social-media-seo
|
|
3
|
+
description: >
|
|
4
|
+
Optimize social media content for maximum discoverability and engagement using 2025-proven SEO strategies.
|
|
5
|
+
Includes comprehensive CSV databases with 100+ caption formulas, thread structures, viral patterns, and
|
|
6
|
+
platform-specific optimization playbooks for Instagram, X/Twitter, and Threads. Works with seo-manager
|
|
7
|
+
subagent for intelligent content generation.
|
|
8
|
+
category: creative
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Social Media SEO (2025)
|
|
12
|
+
|
|
13
|
+
Transform social media posts into discoverable, engaging content using research-backed SEO strategies and extensive formula databases.
|
|
14
|
+
|
|
15
|
+
## What This Skill Solves
|
|
16
|
+
|
|
17
|
+
**The 2025 Social Media Landscape Problem:**
|
|
18
|
+
- Instagram pivoted from hashtag-based discovery to **keyword-based SEO** (Google/Bing now index captions)
|
|
19
|
+
- X/Twitter prioritizes first 100 characters for search visibility
|
|
20
|
+
- Generic content gets lost (zero-click searches at 60%, users find answers on platform)
|
|
21
|
+
- 70% of Gen Z use TikTok/Instagram as primary search engines, not Google
|
|
22
|
+
|
|
23
|
+
**This skill provides:**
|
|
24
|
+
1. **Platform-specific optimization playbooks** (Instagram, X/Twitter, Threads)
|
|
25
|
+
2. **CSV databases** with 100+ proven formulas (captions, threads, hooks, viral patterns)
|
|
26
|
+
3. **Data-driven selection** (includes avg_engagement, conversion_rate metrics)
|
|
27
|
+
4. **Non-monotonous variety** (dozens of styles instead of static templates)
|
|
28
|
+
|
|
29
|
+
## When to Use This Skill
|
|
30
|
+
|
|
31
|
+
**Trigger patterns:**
|
|
32
|
+
- "Optimize my Instagram caption for SEO"
|
|
33
|
+
- "Create viral Twitter thread structure"
|
|
34
|
+
- "Best hashtag strategy for [platform]"
|
|
35
|
+
- "Write engaging social media post about [topic]"
|
|
36
|
+
- "Improve discoverability on [platform]"
|
|
37
|
+
- "Generate multiple caption variations"
|
|
38
|
+
|
|
39
|
+
**Use with seo-manager subagent** for intelligent querying of databases and customized recommendations.
|
|
40
|
+
|
|
41
|
+
## Core Methodology
|
|
42
|
+
|
|
43
|
+
### 2025 Social Media SEO Principles
|
|
44
|
+
|
|
45
|
+
**1. Keyword-First Approach** (Instagram/Threads)
|
|
46
|
+
- 3-5 highly relevant hashtags (not 30)
|
|
47
|
+
- Keywords in first 15 characters of caption
|
|
48
|
+
- Alt text optimization for Google/Bing indexing
|
|
49
|
+
- Profile optimization (name, username, bio)
|
|
50
|
+
|
|
51
|
+
**2. First-100-Characters Rule** (X/Twitter)
|
|
52
|
+
- Critical keywords front-loaded
|
|
53
|
+
- Hook formula in opening
|
|
54
|
+
- Bio optimization (160 chars with primary keyword)
|
|
55
|
+
- Thread architecture matters
|
|
56
|
+
|
|
57
|
+
**3. E-E-A-T for Social** (All Platforms)
|
|
58
|
+
- Experience: Show, don't tell
|
|
59
|
+
- Expertise: Cite sources, use data
|
|
60
|
+
- Authoritativeness: Consistent expertise
|
|
61
|
+
- Trust: Authentic voice, no manipulation
|
|
62
|
+
|
|
63
|
+
**4. Viral + SEO Integration**
|
|
64
|
+
- Emotion (surprise/joy/curiosity) + Keywords
|
|
65
|
+
- Relatability + Search intent
|
|
66
|
+
- Utility/Shareability + Semantic optimization
|
|
67
|
+
- Timeliness + Trending keywords
|
|
68
|
+
|
|
69
|
+
### Platform-Specific Optimizations
|
|
70
|
+
|
|
71
|
+
**Instagram (Keyword-Based Discovery)**
|
|
72
|
+
- Caption keywords > Hashtags (2025 shift)
|
|
73
|
+
- Alt text = Google/Bing SEO opportunity
|
|
74
|
+
- Reel optimization: 30-90 sec, on-screen text, captions
|
|
75
|
+
- Name field searchable (not just username)
|
|
76
|
+
|
|
77
|
+
**X/Twitter (Real-Time Relevance)**
|
|
78
|
+
- Thread first tweet = hook + keywords (first 50 chars)
|
|
79
|
+
- Engagement drives distribution (replies > retweets > likes)
|
|
80
|
+
- Bio formula: [Who] + [What] + [Keyword]
|
|
81
|
+
- Fresh content boosted (post timing matters)
|
|
82
|
+
|
|
83
|
+
**Threads (Meta's Discovery Algorithm)**
|
|
84
|
+
- Cross-promotion with Instagram
|
|
85
|
+
- Topic clarity (last 9-12 posts influence categorization)
|
|
86
|
+
- Connected reach (existing followers) vs Unconnected reach (discovery)
|
|
87
|
+
|
|
88
|
+
## How to Use The Databases
|
|
89
|
+
|
|
90
|
+
This skill includes **7 CSV databases** with proven formulas:
|
|
91
|
+
|
|
92
|
+
### Database Structure
|
|
93
|
+
|
|
94
|
+
```csv
|
|
95
|
+
# Example: caption-styles.csv
|
|
96
|
+
num,platform,style_name,goal,structure,example,avg_engagement,character_count,keyword_placement
|
|
97
|
+
1,instagram,Educational Hook,"teach + engage","[Question] + [Answer] + [CTA]","Did you know...",8.2%,145,"first 15 chars"
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Querying Pattern
|
|
101
|
+
|
|
102
|
+
**Manual Search:**
|
|
103
|
+
1. Open relevant CSV (e.g., `databases/caption-styles.csv`)
|
|
104
|
+
2. Filter by: platform, goal, avg_engagement threshold
|
|
105
|
+
3. Select 2-3 matching formulas
|
|
106
|
+
4. Adapt structure to your content
|
|
107
|
+
|
|
108
|
+
**With seo-manager subagent:**
|
|
109
|
+
```
|
|
110
|
+
User: "Instagram caption for educational content, high engagement"
|
|
111
|
+
→ Subagent queries: platform=instagram, goal=teach, avg_engagement>8%
|
|
112
|
+
→ Returns: Top 3 formulas with reasoning
|
|
113
|
+
→ Generates: 3 customized variations
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
### Available Databases (P0-P2)
|
|
117
|
+
|
|
118
|
+
**P0 (Core):**
|
|
119
|
+
- `caption-styles.csv` - 30+ caption formulas by platform/goal
|
|
120
|
+
- `hook-formulas.csv` - 25+ first-3-second hooks
|
|
121
|
+
|
|
122
|
+
**P1 (Advanced):**
|
|
123
|
+
- `thread-structures.csv` - 25+ thread architectures
|
|
124
|
+
- `hashtag-strategies.csv` - 20+ platform-specific strategies
|
|
125
|
+
- `viral-patterns.csv` - 20+ proven viral triggers
|
|
126
|
+
|
|
127
|
+
**P2 (Intelligence):**
|
|
128
|
+
- `engagement-tactics.csv` - 15+ CTA formulas
|
|
129
|
+
- `keyword-clusters.csv` - 10+ semantic keyword groups
|
|
130
|
+
|
|
131
|
+
## Quick Start Guide
|
|
132
|
+
|
|
133
|
+
### For Instagram Posts
|
|
134
|
+
|
|
135
|
+
1. **Profile optimization** (one-time):
|
|
136
|
+
- Name field: Include primary keyword (e.g., "Sarah | SEO Expert")
|
|
137
|
+
- Username: Relevant to niche if possible
|
|
138
|
+
- Bio: 2-3 keywords naturally woven
|
|
139
|
+
- Enable "Website Embeds" (Settings → Sharing)
|
|
140
|
+
|
|
141
|
+
2. **Caption creation**:
|
|
142
|
+
- Query `caption-styles.csv`: filter by goal (educate/entertain/convert)
|
|
143
|
+
- Front-load keyword in first 15 characters
|
|
144
|
+
- Use 3-5 relevant hashtags (micro + mid + broad mix)
|
|
145
|
+
- Add descriptive alt text with keywords
|
|
146
|
+
|
|
147
|
+
3. **Reel optimization**:
|
|
148
|
+
- Length: 30-90 seconds (higher completion rate)
|
|
149
|
+
- On-screen text: Include keywords
|
|
150
|
+
- Captions: Always enable
|
|
151
|
+
- Trending audio: When relevant to brand
|
|
152
|
+
|
|
153
|
+
### For X/Twitter Threads
|
|
154
|
+
|
|
155
|
+
1. **Bio optimization**:
|
|
156
|
+
- Formula: `[Role/Expertise] helping [audience] with [value]`
|
|
157
|
+
- Example: "SEO strategist helping creators with discoverability"
|
|
158
|
+
- 160 chars, primary keyword included
|
|
159
|
+
|
|
160
|
+
2. **Thread structure**:
|
|
161
|
+
- Query `thread-structures.csv`: select thread type
|
|
162
|
+
- Tweet 1: Hook + keyword (first 50 chars critical)
|
|
163
|
+
- Tweets 2-9: Value delivery
|
|
164
|
+
- Tweet 10: Summary + CTA
|
|
165
|
+
- Alt text on all images
|
|
166
|
+
|
|
167
|
+
3. **Engagement optimization**:
|
|
168
|
+
- Post timing: Use analytics for audience peak
|
|
169
|
+
- First hour critical (80% of viral potential decided)
|
|
170
|
+
- Reply to comments within 1 hour
|
|
171
|
+
- Quote-tweet relevant content
|
|
172
|
+
|
|
173
|
+
### For Threads
|
|
174
|
+
|
|
175
|
+
1. **Cross-promote with Instagram**:
|
|
176
|
+
- Share Threads posts to Instagram Stories
|
|
177
|
+
- Similar content themes (algorithm recognizes)
|
|
178
|
+
|
|
179
|
+
2. **Topic clarity**:
|
|
180
|
+
- Last 9-12 posts influence categorization
|
|
181
|
+
- Stay focused on niche topics
|
|
182
|
+
- Avoid random off-topic posts
|
|
183
|
+
|
|
184
|
+
3. **Two-tier distribution**:
|
|
185
|
+
- Connected reach: Engagement quality matters
|
|
186
|
+
- Unconnected reach: Topic relevance + freshness
|
|
187
|
+
|
|
188
|
+
## Integration with seo-manager Subagent
|
|
189
|
+
|
|
190
|
+
The **seo-manager subagent** (separate file) provides intelligent orchestration:
|
|
191
|
+
|
|
192
|
+
**Capabilities:**
|
|
193
|
+
1. Multi-database querying (combines patterns from multiple CSVs)
|
|
194
|
+
2. Goal-based recommendations (awareness/engagement/conversion)
|
|
195
|
+
3. Platform-specific optimization
|
|
196
|
+
4. A/B test variation generation
|
|
197
|
+
5. Evidence-based reasoning (cites avg_engagement data)
|
|
198
|
+
|
|
199
|
+
**Example workflow:**
|
|
200
|
+
```
|
|
201
|
+
User: "Create Instagram post about AI tools for designers"
|
|
202
|
+
|
|
203
|
+
seo-manager:
|
|
204
|
+
1. Queries caption-styles.csv: platform=instagram, goal=educate
|
|
205
|
+
2. Queries hook-formulas.csv: emotion_trigger=curiosity
|
|
206
|
+
3. Queries keyword-clusters.csv: category=ai+design
|
|
207
|
+
4. Combines patterns into 3 variations
|
|
208
|
+
5. Explains: "Pattern #12 (12.1% avg engagement) + Hook #5 (curiosity gap)"
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
## Best Practices
|
|
212
|
+
|
|
213
|
+
**Content Creation:**
|
|
214
|
+
- ✅ Front-load keywords (first 15-50 chars depending on platform)
|
|
215
|
+
- ✅ Use proven formulas from databases (not guessing)
|
|
216
|
+
- ✅ Add alt text to EVERY image (accessibility + SEO)
|
|
217
|
+
- ✅ Track performance (A/B test different formulas)
|
|
218
|
+
- ❌ Don't keyword stuff (natural integration only)
|
|
219
|
+
- ❌ Don't use 30 hashtags (3-5 relevant ones better)
|
|
220
|
+
- ❌ Don't ignore platform-specific features
|
|
221
|
+
|
|
222
|
+
**Database Usage:**
|
|
223
|
+
- ✅ Filter by proven metrics (avg_engagement >7%)
|
|
224
|
+
- ✅ Adapt formulas to your voice (don't copy verbatim)
|
|
225
|
+
- ✅ Combine multiple patterns for uniqueness
|
|
226
|
+
- ✅ Update with your winning formulas
|
|
227
|
+
- ❌ Don't use every formula blindly
|
|
228
|
+
- ❌ Don't ignore platform column (Instagram ≠ Twitter)
|
|
229
|
+
|
|
230
|
+
**SEO Optimization:**
|
|
231
|
+
- ✅ Research semantic keywords (not just primary)
|
|
232
|
+
- ✅ Optimize for both platform search AND Google
|
|
233
|
+
- ✅ Build topic authority (consistent niche focus)
|
|
234
|
+
- ✅ Engage authentically (quality > quantity)
|
|
235
|
+
- ❌ Don't sacrifice readability for keywords
|
|
236
|
+
- ❌ Don't neglect analytics (track what works)
|
|
237
|
+
|
|
238
|
+
## Notes and Limitations
|
|
239
|
+
|
|
240
|
+
**Algorithm Changes:**
|
|
241
|
+
- Databases reflect 2025 best practices (Instagram Dec 2025, X/Twitter Nov 2025)
|
|
242
|
+
- Mark deprecated patterns when algo updates
|
|
243
|
+
- Add new winning formulas as discovered
|
|
244
|
+
|
|
245
|
+
**Not a Magic Bullet:**
|
|
246
|
+
- SEO improves discoverability, NOT quality
|
|
247
|
+
- Bad content with good SEO = still bad content
|
|
248
|
+
- Authenticity > Optimization (humans detect manipulation)
|
|
249
|
+
|
|
250
|
+
**Platform Constraints:**
|
|
251
|
+
- Instagram: Only public professional accounts (18+) eligible for Google indexing
|
|
252
|
+
- X/Twitter: Nofollow links (but still valuable for visibility)
|
|
253
|
+
- Threads: Young platform, SEO features evolving
|
|
254
|
+
|
|
255
|
+
**Quality Over Quantity:**
|
|
256
|
+
- 1 optimized post > 10 generic posts
|
|
257
|
+
- Sustained engagement > viral spike
|
|
258
|
+
- Community building > vanity metrics
|
|
259
|
+
|
|
260
|
+
## References
|
|
261
|
+
|
|
262
|
+
**Detailed Playbooks:**
|
|
263
|
+
- `references/instagram-seo.md` - Comprehensive Instagram optimization
|
|
264
|
+
- `references/x-twitter-seo.md` - X/Twitter strategies
|
|
265
|
+
- `references/threads-seo.md` - Threads best practices
|
|
266
|
+
- `references/analytics-guide.md` - What to track & optimize
|
|
267
|
+
|
|
268
|
+
**CSV Databases:**
|
|
269
|
+
- `databases/caption-styles.csv`
|
|
270
|
+
- `databases/hook-formulas.csv`
|
|
271
|
+
- `databases/thread-structures.csv`
|
|
272
|
+
- `databases/hashtag-strategies.csv`
|
|
273
|
+
- `databases/viral-patterns.csv`
|
|
274
|
+
- `databases/engagement-tactics.csv`
|
|
275
|
+
- `databases/keyword-clusters.csv`
|
|
276
|
+
|
|
277
|
+
**Helper Scripts:**
|
|
278
|
+
- `scripts/query_database.py` - Search/filter CSVs programmatically
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
num,platform,style_name,goal,structure,example,avg_engagement,character_count,keyword_placement
|
|
2
|
+
1,instagram,Educational Hook,teach + engage,"[Question] + [Answer in 3 points] + [CTA]","Did you know 92% skip captions? Here's how to fix it: 1) Front-load keywords 2) Add value first 3) Clear CTA. Save this for later!",8.2%,145,first 15 chars
|
|
3
|
+
2,instagram,Story-Driven Connection,build trust,"[Personal anecdote] + [Lesson learned] + [Question]","Last month I lost 10k followers by ignoring SEO. Turns out Instagram's algorithm changed in Dec 2024. Here's what I learned... What's your biggest SEO mistake?",12.1%,178,naturally woven
|
|
4
|
+
3,instagram,Data-Led Authority,establish expertise,"[Surprising statistic] + [Why it matters] + [Actionable tip]","70% of Gen Z use Instagram as a search engine (not Google). If you're not optimizing for keywords you're invisible. Quick fix: Put keywords in your Name field.",10.5%,162,first 20 chars
|
|
5
|
+
4,instagram,Problem-Solution Quick,solve pain point,"[Common struggle] + [2-step solution] + [Benefit]","Struggling with captions? Try this: 1) Write hook first 2) Add value 3) End with question. Result: 3x more comments.",7.8%,128,first 10 chars
|
|
6
|
+
5,instagram,Behind-the-Scenes,humanize brand,"[Process reveal] + [Challenge faced] + [Lesson]","Here's what happened when I tested 50 caption styles... The 'educational hook' beat everything else by 40%. Full breakdown in comments!",9.3%,142,naturally woven
|
|
7
|
+
6,twitter,Thread Teaser Hook,drive engagement,"[Bold claim] + [Mini proof] + [Thread promise]","Most viral threads share 3 patterns. I analyzed 1000 threads with 1M+ views. Here's what I found: 🧵",15.7%,118,first 10 words
|
|
8
|
+
7,twitter,Contrarian Take,challenge norms,"[Common belief] + [Why it's wrong] + [Alternative]","Everyone says 'post daily'. But my analytics prove posting 3x/week gets 2x engagement. Here's why quality > quantity:",13.4%,132,first 15 chars
|
|
9
|
+
8,twitter,Data Thread Opener,establish credibility,"[Metric] + [Context] + [What's coming]","I spent $50k testing Twitter SEO tactics. ROI: 847%. Here are the 7 strategies that actually worked (with screenshots):",11.2%,127,first 20 chars
|
|
10
|
+
9,twitter,Story Arc Thread,narrative engagement,"[Hook] + [Rising action setup]","My first tweet got 7 views. My last got 2.3M. Here's the exact blueprint I followed (anyone can copy this):",14.8%,115,first 5 words
|
|
11
|
+
10,twitter,Question Hook Thread,curiosity gap,"[Provocative question] + [Challenge assumption]","What if I told you hashtags are dead? Instagram confirmed it in Dec 2024. Here's what actually works now:",12.6%,111,first 8 words
|
|
12
|
+
11,threads,Instagram Crossover,leverage network,"[Value proposition] + [Meta insight] + [Invite discussion]","Instagram's new algorithm favors keyword-rich captions over hashtags. I've been testing this for 3 months. What's your experience?",8.9%,138,first 12 chars
|
|
13
|
+
12,threads,Topic Authority Build,consistent expertise,"[Expert insight] + [Why it matters] + [Community question]","After analyzing 10k viral Threads posts the pattern is clear: Topic clarity > everything else. Your last 9 posts determine categorization.",7.4%,152,naturally woven
|
|
14
|
+
13,instagram,Mini Tutorial,provide value,"[Problem] + [Step-by-step solution] + [Result]","Can't get on Explore page? Fix: 1) Keyword in first line 2) Alt text on images 3) 3-5 niche hashtags. I went from 200 to 2k weekly reach.",9.7%,156,first line
|
|
15
|
+
14,instagram,Myth-Busting,correct misconceptions,"[Common myth] + [Truth] + [What to do instead]","Myth: More hashtags = more reach. Truth: Instagram penalizes 30-hashtag posts. Use 3-5 highly relevant ones. Check your insights—you'll see the difference.",11.3%,167,second sentence
|
|
16
|
+
15,instagram,Social Proof Pattern,build credibility,"[Result achieved] + [Timeframe] + [Key tactic]","Grew from 500 to 50k in 6 months using one simple trick: I put my main keyword in my NAME field (not username). Instagram search started showing my profile first.",10.1%,174,naturally woven
|
|
17
|
+
16,twitter,Pain-Agitate-Solve,address frustration,"[Pain point] + [Why it's worse] + [Solution preview]","Your tweets get no impressions? It's because you're burying the hook. The algorithm decides in the first 100 characters. Here's the fix:",12.9%,145,first 20 chars
|
|
18
|
+
17,twitter,Pattern Recognition,teach framework,"[I noticed X] + [Here's the pattern] + [How to use it]","I noticed viral threads follow a pattern: Hook (1 tweet) + Value (7-9 tweets) + CTA (1 tweet). Used it yesterday got 100k impressions. Full breakdown:",13.7%,156,first 10 chars
|
|
19
|
+
18,threads,Meta Ecosystem Play,cross-platform,"[Insight] + [Cross-platform tip] + [Engagement ask]","Pro tip: Threads + Instagram work together. Post similar topics on both for 2x algorithmic boost. Meta confirmed this. Who's tested it?",8.1%,142,naturally woven
|
|
20
|
+
19,instagram,Transformation Post,before-after,"[Before state] + [After state] + [What changed]","Before: 50 views per post. After: 5k views per post. The difference? I started writing captions like Google search queries. Keywords > creativity.",11.8%,158,second sentence
|
|
21
|
+
20,instagram,Listicle Format,scannable value,"[Number] + [Category] + [Brief items] + [CTA]","5 Instagram SEO fixes: 1) Keywords in bio 2) Alt text on images 3) Hashtags in caption (not comments) 4) Name field optimization 5) Enable website embeds. Which one did you miss?",9.4%,189,first 5 words
|
|
22
|
+
21,twitter,Curiosity Loop,sustained engagement,"[Fascinating claim] + [Just enough info] + [Thread tease]","This 47-character caption got 10M impressions. Here's why it worked (and how to replicate it): [1/10]",14.2%,108,first 12 chars
|
|
23
|
+
22,twitter,Case Study Hook,prove concept,"[Specific result] + [Method] + [Proof promise]","Made $12k from one thread. Total time: 23 minutes. Here's the exact structure I used (+ screenshots of the revenue):",13.1%,123,first 8 chars
|
|
24
|
+
23,instagram,Controversial Opinion,spark debate,"[Unpopular take] + [Reasoning] + [Invite counterpoint]","Unpopular opinion: Reels are overrated for growth. My carousel posts get 10x more saves and shares. Here's my data... Disagree? Let's discuss.",10.7%,151,first 5 words
|
|
25
|
+
24,instagram,Tactical Breakdown,actionable steps,"[What] + [Why] + [Exactly how]","Instagram alt text isn't just accessibility—it's SEO gold. Google indexes it. Here's how to write it: [Keyword] + [detailed description]. Example in comments.",9.9%,168,first 15 chars
|
|
26
|
+
25,twitter,Personal Experiment,share learnings,"[I tested X] + [Here's what happened] + [Takeaway]","I posted the same content at different times for 30 days. Result: 8pm posts got 4x more impressions than 8am. Your audience's timezone matters more than 'best time to post' guides.",12.4%,194,first 10 chars
|
|
27
|
+
26,threads,Community Building,foster discussion,"[Observation] + [Your take] + [Open question]","Threads algorithm rewards replies more than likes. I've been replying to every comment within 1 hour—my reach doubled. What's your engagement strategy?",8.6%,161,naturally woven
|
|
28
|
+
27,instagram,Value Stack,multiple tips,"[Promise] + [Tips rapid-fire] + [Bonus]","Want more saves? Do this: ✓ Educational content ✓ Carousel format ✓ Save this reminder ✓ DM for template. Bonus: Saves = algorithmic boost.",8.8%,147,first 8 chars
|
|
29
|
+
28,twitter,Micro-Story,concise narrative,"[Situation] + [Turning point] + [Outcome]","My thread got 3 views. Changed the hook to a question—hit 300k. Sometimes all you need is to move one sentence.",11.8%,122,naturally woven
|
|
30
|
+
29,instagram,Direct CTA Leader,action-focused,"[Command] + [Benefit] + [Urgency]","Stop scrolling. If you're not using keywords in your captions Instagram can't categorize your content. Fix it today your reach depends on it.",9.1%,149,first 2 words
|
|
31
|
+
30,twitter,Research Reveal,authority building,"[Study/Analysis] + [Key finding] + [Implication]","Analyzed 5000 viral tweets from 2024. 78% used numbers in the first line. 92% had a clear CTA. 100% front-loaded the hook. Pattern recognition = unfair advantage.",14.5%,174,first 10 chars
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
num,tactic_name,formula,goal,platform,example,avg_engagement_lift,psychological_trigger
|
|
2
|
+
1,Save Prompt,"Save this for later [benefit]",increase saves,instagram,"Save this for later when you're ready to optimize your Instagram.",42%,future utility
|
|
3
|
+
2,Tag Challenge,"Tag someone who needs to see this",increase shares,all,"Tag a creator who's struggling with engagement.",38%,social obligation
|
|
4
|
+
3,Question Hook CTA,"What's your experience with [topic]?",increase comments,all,"What's your experience with Instagram SEO? Drop your wins/struggles below.",51%,reciprocity
|
|
5
|
+
4,Specific Question,"Which one resonates most with you? (1 2 or 3)",increase comments,all,"Which caption style works for you? A) Educational B) Story-driven C) Data-led",47%,forced choice
|
|
6
|
+
5,Bookmark Command,"Bookmark this so you don't lose it",increase saves,instagram/twitter,"Bookmark this thread—you'll need it for your next campaign.",40%,loss aversion
|
|
7
|
+
6,Share for Later,"Share this to your Story/DM someone",increase shares,instagram,"Share this to your Story if it helped! (I'll reshare)",35%,reciprocity + visibility
|
|
8
|
+
7,Reply Incentive,"Reply with [word] and I'll send you [resource]",increase comments,all,"Reply with SEO and I'll DM you my caption template library.",68%,exchange value
|
|
9
|
+
8,Poll Integration,"Vote in the poll below: A or B?",increase engagement,twitter/instagram,"Vote: Which works better? A) Hashtags B) Keywords",44%,participation bias
|
|
10
|
+
9,Controversy Invite,"Agree or disagree? Let's discuss:",increase comments,all,"Unpopular opinion: Reels are overrated. Agree or disagree?",53%,opinion validation
|
|
11
|
+
10,Success Challenge,"Try this and report back in 24 hours",increase future engagement,all,"Try this caption formula today and DM me your results in 24 hours.",29%,commitment + accountability
|
|
12
|
+
11,Resource Drop Follow,"Follow for more [topic] resources",increase follows,all,"Follow @yourhandle for daily Instagram SEO tips like this.",22%,continued value promise
|
|
13
|
+
12,DM Funnel,"DM me [word] for [exclusive resource]",increase DMs + connection,instagram,"DM me GROWTH for my free 100-caption database.",61%,exclusivity
|
|
14
|
+
13,Completion Loop,"If this helped hit the ❤️ so I know what to post more of",increase likes + feedback,all,"If this thread helped you hit the ❤️ so I create more SEO content.",37%,feedback loop
|
|
15
|
+
14,Comparison Ask,"A vs B - which do you prefer and why?",increase comments,all,"Instagram vs TikTok for business growth—which and why?",48%,opinion + reasoning
|
|
16
|
+
15,Story Continuation,"Want part 2? Let me know in comments",increase comments + future engagement,all,"This is just part 1 of the framework. Want part 2 with examples? Comment YES.",55%,curiosity + continuation
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
num,platform,strategy_name,hashtag_count,size_mix,placement,example,reasoning,avg_reach_boost
|
|
2
|
+
1,instagram,Niche Authority 2025,3-5,"2 micro (500-5K) + 2 mid (50K-200K) + 1 broad (1M+)",in caption,"#InstaSeoTips #ContentStrategy2025 #SocialMediaMarketing #DigitalMarketing #Marketing",Algorithm favors relevance over quantity (Dec 2024 update),45%
|
|
3
|
+
2,instagram,Discovery Bridge,3-4,"1 branded + 2 niche + 1 discovery",first line of caption,"#YourBrand #SeoForCreators #InstagramTips #ContentCreators",Front-loaded hashtags get categorized faster,38%
|
|
4
|
+
3,instagram,Trending + Evergreen,4-5,"2 trending (this week) + 3 evergreen",in caption,"#Instagram2025 #SocialMediaTrends #SeoTips #ContentMarketing #CreatorEconomy",Mix ensures immediate + long-term discovery,52%
|
|
5
|
+
4,instagram,Hyper-Niche Focus,3,"3 ultra-specific (100-2K)",in caption,"#InstagramSeoForPhotographers #ContentStrategyWeddings #SocialMediaForCreatives",Small communities = higher engagement rate,61%
|
|
6
|
+
5,instagram,Geographic + Topic,4,"2 location-based + 2 topic",in caption,"#NYCCreators #CaliforniaBusiness #SeoStrategy #ContentMarketing",Local SEO + topic authority combo,43%
|
|
7
|
+
6,twitter,Minimal Strategic,1-2,"1 trending or 1 niche",first 50 characters,"#TwitterSEO #ContentStrategy",X algorithm penalizes 3+ hashtags (2025),29%
|
|
8
|
+
7,twitter,Trending Hijack,1,"1 currently trending",within first 10 words,"#TrendingTopic relates to your content somehow",Ride algorithmic momentum (24-hour window),67%
|
|
9
|
+
8,twitter,Branded Consistency,1,"1 branded hashtag",at end of tweet,"Your content here #YourBrandName",Build searchable brand archive,31%
|
|
10
|
+
9,twitter,Event-Based,1-2,"1 event + 1 category",in tweet,"#ConferenceName #Industry insights",Conference attendees search these,54%
|
|
11
|
+
10,threads,Cross-Platform Sync,3-4,"Same as Instagram post (if cross-posting)",in thread,"#SocialMediaTips #ContentStrategy #CreatorEconomy",Meta recognizes patterns across platforms,41%
|
|
12
|
+
11,threads,Topic Cluster,2-3,"2 main topic + 1 meta category",in thread,"#SEOtips #InstagramGrowth #SocialMedia",Helps algorithm categorize for discovery,36%
|
|
13
|
+
12,instagram,Seasonal Smart,4-5,"1 seasonal + 2 evergreen + 2 niche",in caption,"#Holiday2025 #SeoTips #ContentStrategy #InstagramMarketing #SocialMediaTips",Seasonal spike + sustained relevance,48%
|
|
14
|
+
13,instagram,Forbidden Techniques AVOID,10-30,"Random popular tags",in comments or 30+ hashtags,"#Love #Instagood #PhotoOfTheDay (x30)",Instagram penalizes this (confirmed Dec 2024),-40%
|
|
15
|
+
14,twitter,Thread Category,1,"1 content-type indicator",first tweet only,"🧵 Thread about [topic] #TwitterThreads",Helps categorization + thread discoverability,35%
|
|
16
|
+
15,instagram,Save-Focused,3-4,"Tags that indicate utility",in caption,"#SeoChecklist #InstagramGuide #ContentTemplate #SaveThisPost",Users search 'save' type content,57%
|
|
17
|
+
16,instagram,Problem-Solution Tags,4-5,"Problem term + solution term",in caption,"#LowEngagement #IncreaseReach #SeoForCreators #InstagramTips #GrowthHacks",Matches search intent patterns,49%
|
|
18
|
+
17,twitter,Industry Insider,1-2,"Niche professional tags",in tweet,"#MarketingTwitter #SeoTwitter",Professional communities actively search,44%
|
|
19
|
+
18,instagram,Tutorial Format,3-4,"How-to + topic tags",in caption,"#HowToSeo #InstagramTutorial #LearnSeo #ContentTips",Educational content gets boosted,46%
|
|
20
|
+
19,threads,Engagement Driver,2-3,"Discussion-focused tags",in thread,"#AskMe #Discuss #Opinion",Threads rewards conversation,39%
|
|
21
|
+
20,instagram,Micro-Influencer Mix,3-5,"Community-specific tags",in caption,"#CreatorCommunity #SmallBusinessOwners #SolopreneursOfInstagram #SeoForCreators",Tight communities = higher engagement density,53%
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
num,platform,hook_type,formula,emotion_trigger,use_case,example,conversion_rate
|
|
2
|
+
1,all,Curiosity Gap,"[Number] [thing] that [unexpected result]",curiosity,drive engagement,"5 SEO mistakes that actually BOOST rankings",4.2%
|
|
3
|
+
2,all,Pattern Interrupt,"Stop [common action]. Do [opposite] instead.",surprise,challenge norms,"Stop optimizing for Google. Optimize for humans first.",6.1%
|
|
4
|
+
3,instagram,FOMO Trigger,"If you're not doing [X] you're losing [Y]",fear + urgency,create urgency,"If you're not using alt text you're invisible to 70% of searches",5.8%
|
|
5
|
+
4,twitter,Bold Claim,"[Controversial statement]. Here's proof:",credibility,establish authority,"Hashtags are dead. Instagram confirmed it.",7.3%
|
|
6
|
+
5,all,Question Hook,"What if I told you [surprising fact]?",curiosity,challenge assumptions,"What if I told you posting less gets more engagement?",5.4%
|
|
7
|
+
6,instagram,Relatability,"We all [common struggle]. Here's why:",connection,build community,"We all overthink captions for 30 mins. Here's why:",6.7%
|
|
8
|
+
7,twitter,Data Hook,"I analyzed [number] [things]. Found [insight]:",authority,prove expertise,"I analyzed 1000 viral threads. Found 3 patterns:",8.1%
|
|
9
|
+
8,all,Story Opener,"This [time period] I [result]. Here's how:",inspiration,show transformation,"This month I hit 100k views. Here's how:",5.9%
|
|
10
|
+
9,instagram,Direct Address,"[Role/Person] listen up: [critical info]",urgency,target audience,"Content creators listen up: Instagram changed their algorithm",6.3%
|
|
11
|
+
10,twitter,Controversial Take,"Everyone says [X]. They're wrong. Here's why:",challenge + authority,spark debate,"Everyone says post daily. They're wrong. Here's why:",7.8%
|
|
12
|
+
11,all,Myth-Buster,"Myth: [common belief]. Truth: [reality].",correction,educate,"Myth: More hashtags = more reach. Truth: 3-5 beats 30.",6.9%
|
|
13
|
+
12,instagram,Transformation,"Before: [bad state]. After: [good state].",hope,show results,"Before: 50 views/post. After: 5k views/post.",7.4%
|
|
14
|
+
13,twitter,Pattern Recognition,"I noticed [X]. Then I saw [pattern].",insight,teach framework,"I noticed viral tweets share one thing: they front-load value.",6.6%
|
|
15
|
+
14,all,Personal Failure,"I lost [something] by [mistake]. Here's what I learned:",vulnerability,build trust,"I lost 10k followers by ignoring SEO. Here's what I learned:",8.3%
|
|
16
|
+
15,instagram,Quick Win,"Want [result]? Do this [simple action]:",utility,provide value,"Want more saves? Use carousel format + educational content.",5.7%
|
|
17
|
+
16,twitter,Experiment Result,"I tested [X] for [time]. Result: [outcome]:",credibility,share data,"I tested posting times for 30 days. Result: 8pm wins by 4x.",7.1%
|
|
18
|
+
17,all,Unpopular Opinion,"Unpopular opinion: [controversial take].",controversy,spark discussion,"Unpopular opinion: Reels are overrated for organic growth.",6.8%
|
|
19
|
+
18,instagram,Behind-the-Scenes,"Here's what [outcome] actually looks like:",transparency,humanize,"Here's what 100k followers actually looks like: (reality check)",6.4%
|
|
20
|
+
19,twitter,Framework Intro,"The [number]-step [framework] for [result]:",structure,teach method,"The 3-step formula for viral threads:",7.6%
|
|
21
|
+
20,all,Mistake Warning,"Don't make this mistake: [common error].",caution,prevent failure,"Don't make this mistake: hashtags in comments don't count",5.9%
|
|
22
|
+
21,instagram,Case Study,"How I [result] in [timeframe] using [method]:",proof,show process,"How I grew to 50k in 6 months using keyword optimization:",7.9%
|
|
23
|
+
22,twitter,Comparison,"[X] vs [Y]: Which one actually works?",analysis,compare options,"Hashtags vs Keywords: Which one Instagram prioritizes?",6.5%
|
|
24
|
+
23,all,Actionable Command,"Do this right now: [specific action].",urgency,drive immediate action,"Do this right now: Add keywords to your Instagram Name field",6.2%
|
|
25
|
+
24,instagram,Algorithm Insight,"Instagram's algorithm [surprising behavior]:",insider knowledge,leverage platform,"Instagram's algorithm prioritizes saves over likes in 2025",7.7%
|
|
26
|
+
25,twitter,Resource Drop,"[Number] resources that [benefit]:",utility,provide tools,"7 free tools that analyze your Twitter SEO performance",5.5%
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
num,category,primary_keyword,semantic_cluster,search_intent,platform_priority,example_usage
|
|
2
|
+
1,social_media_marketing,"Instagram SEO","Instagram optimization, Instagram search, Instagram discoverability, Instagram algorithm, Instagram keywords, Instagram ranking",learn + implement,instagram,"Instagram SEO tips for creators looking to increase discoverability"
|
|
3
|
+
2,content_creation,"Content strategy","Content planning, content calendar, content ideas, content marketing, content creation tips, storytelling",plan + create,all,"Content strategy framework for consistent posting and engagement"
|
|
4
|
+
3,creator_economy,"Creator growth","Follower growth, audience building, community building, creator tips, monetization, brand deals",achieve + monetize,all,"Creator growth strategies: from 0 to 10k followers in 90 days"
|
|
5
|
+
4,digital_marketing,"Social media marketing","Digital marketing, online marketing, social strategy, brand awareness, engagement tactics, social ROI",learn + strategize,all,"Social media marketing trends 2025: what's working now"
|
|
6
|
+
5,seo_technical,"Keyword research","Keyword optimization, search intent, semantic keywords, long-tail keywords, keyword density, LSI keywords",research + optimize,all,"Keyword research for social media: finding high-intent terms"
|
|
7
|
+
6,platform_specific,"Twitter threads","X threads, thread templates, Twitter engagement, thread virality, Twitter growth, tweet structure",create + engage,twitter,"Twitter threads that go viral: 10 proven structures"
|
|
8
|
+
7,business_growth,"Small business marketing","Local SEO, small business social media, entrepreneur tips, business growth, startup marketing, solopreneur",grow + scale,instagram/linkedin,"Small business marketing on Instagram: complete 2025 guide"
|
|
9
|
+
8,creative_niches,"Photography marketing","Photographer SEO, photo business, visual content, Instagram for photographers, portfolio marketing",showcase + sell,instagram,"Photography marketing: optimize your Instagram for bookings"
|
|
10
|
+
9,analytics,"Social media analytics","Performance tracking, engagement metrics, growth analytics, social insights, data-driven marketing, ROI tracking",measure + improve,all,"Social media analytics: which metrics actually matter in 2025"
|
|
11
|
+
10,tools_software,"Social media tools","Scheduling tools, analytics platforms, content tools, automation software, management apps, creator tools",discover + use,all,"10 social media tools for creators: free and premium options"
|