viruagent-cli 0.5.1 → 0.6.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.
Files changed (35) hide show
  1. package/package.json +1 -1
  2. package/skills/persona-blogger/SKILL.md +47 -0
  3. package/skills/persona-influencer-manager/SKILL.md +40 -0
  4. package/skills/persona-sns-marketer/SKILL.md +38 -0
  5. package/skills/recipe-blog-publish/SKILL.md +59 -0
  6. package/skills/recipe-cross-post/SKILL.md +41 -0
  7. package/skills/recipe-daily-engagement/SKILL.md +57 -0
  8. package/skills/recipe-engage-feed/SKILL.md +56 -0
  9. package/skills/recipe-grow-followers/SKILL.md +52 -0
  10. package/skills/va-insta/SKILL.md +64 -0
  11. package/skills/va-insta-comment/SKILL.md +59 -0
  12. package/skills/va-insta-dm/SKILL.md +51 -0
  13. package/skills/va-insta-feed/SKILL.md +72 -0
  14. package/skills/va-insta-follow/SKILL.md +42 -0
  15. package/skills/va-insta-like/SKILL.md +55 -0
  16. package/skills/va-insta-login/SKILL.md +57 -0
  17. package/skills/va-naver/SKILL.md +43 -0
  18. package/skills/va-naver-categories/SKILL.md +25 -0
  19. package/skills/va-naver-draft/SKILL.md +33 -0
  20. package/skills/va-naver-login/SKILL.md +58 -0
  21. package/skills/va-naver-posts/SKILL.md +38 -0
  22. package/skills/va-naver-publish/SKILL.md +97 -0
  23. package/skills/va-shared/SKILL.md +133 -0
  24. package/skills/va-tistory/SKILL.md +42 -0
  25. package/skills/va-tistory-categories/SKILL.md +37 -0
  26. package/skills/va-tistory-draft/SKILL.md +31 -0
  27. package/skills/va-tistory-login/SKILL.md +54 -0
  28. package/skills/va-tistory-posts/SKILL.md +38 -0
  29. package/skills/va-tistory-publish/SKILL.md +90 -0
  30. package/src/providers/insta/index.js +25 -4
  31. package/src/runner.js +26 -16
  32. package/skills/viruagent-insta.md +0 -163
  33. package/skills/viruagent-naver.md +0 -122
  34. package/skills/viruagent-tistory.md +0 -117
  35. package/skills/viruagent.md +0 -77
@@ -1,77 +0,0 @@
1
- ---
2
- name: viruagent
3
- description: viruagent-cli overview. Routes to platform-specific skills — /viruagent-tistory, /viruagent-naver, /viruagent-insta.
4
- triggers:
5
- - 블로그
6
- - blog
7
- - viruagent
8
- - 블로그 써줘
9
- - publish blog
10
- ---
11
-
12
- # viruagent — Platform Router
13
-
14
- You are an agent using `viruagent-cli`. Route to the correct skill based on the user's request.
15
-
16
- ## Available Skills
17
-
18
- | Skill | Platform | Triggers |
19
- |-------|----------|----------|
20
- | `/viruagent-tistory` | Tistory Blog | 티스토리, tistory |
21
- | `/viruagent-naver` | Naver Blog | 네이버, naver blog |
22
- | `/viruagent-insta` | Instagram | 인스타, instagram, 좋아요, 댓글, 팔로우 |
23
-
24
- ## Quick Reference
25
-
26
- ```bash
27
- # Check available providers
28
- npx viruagent-cli list-providers
29
-
30
- # Check CLI schema
31
- npx viruagent-cli --spec
32
- ```
33
-
34
- All responses are JSON: `{ "ok": true, "data": {...} }` on success, `{ "ok": false, "error": "...", "message": "...", "hint": "..." }` on failure.
35
-
36
- ## Routing Rules
37
-
38
- - User says "블로그 써줘" without specifying platform → ask which platform (Tistory or Naver)
39
- - User says "티스토리" or "tistory" → use `/viruagent-tistory`
40
- - User says "네이버" or "naver" → use `/viruagent-naver`
41
- - User says "인스타" or mentions like/comment/follow → use `/viruagent-insta`
42
-
43
- ## Writing Rules (Shared)
44
-
45
- These rules apply to both Tistory and Naver blog publishing:
46
-
47
- - **Title**: Include the primary keyword. 10~20 characters. Short and impactful.
48
- - **Length**: 3000~4000 characters. Aim for depth, not padding.
49
- - **Paragraphs**: 3~5 sentences each. Do NOT write 1~2 sentence paragraphs repeatedly.
50
- - **Introduction**: 2~3 paragraphs that set context and build reader empathy.
51
- - **Body sections**: Each h2 section must have 2~3 substantial paragraphs. Do NOT jump straight to bullet lists.
52
- - **Lists**: Use sparingly — only for 3+ concrete, scannable items.
53
- - **Evidence**: Each body section should include at least one of: expert quote, data point, real example.
54
- - **Perspective shift**: Include at least one moment that reframes the reader's thinking.
55
- - **Transitions**: Connect sections with bridge sentences.
56
- - **Bold**: Use `<strong>` for key terms (2~3 per section max).
57
- - **Subheadings**: Use `<h2>` for ALL section titles. Do NOT use `<h3>`.
58
- - **Tone**: Conversational but substantive.
59
- - **Closing**: End with a specific, actionable suggestion.
60
- - **SEO**: Primary keyword in title, first paragraph, and at least one `<h2>`.
61
- - **Tags**: Exactly 5, comma-separated, matching post language.
62
-
63
- ## Error Recovery
64
-
65
- | Error | Action |
66
- |---|---|
67
- | `NOT_LOGGED_IN` / `SESSION_EXPIRED` | Run `login` again |
68
- | `MISSING_CONTENT` | Ensure `--content` or `--content-file` is provided |
69
- | `PROVIDER_NOT_FOUND` | Check with `list-providers` |
70
- | `INVALID_POST_ID` | Verify post ID with `list-posts` |
71
-
72
- ## Important Notes
73
-
74
- - Always use `--dry-run` before actual publish to validate parameters
75
- - Content must be valid HTML
76
- - Default provider is `tistory`
77
- - For `--content-file`, use absolute paths