@aiiware/aii 0.23.7 → 0.24.1

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 (33) hide show
  1. package/README.md +5 -2
  2. package/bin/aii +818 -807
  3. package/bin/data/business/daily-standup.yaml +64 -0
  4. package/bin/data/business/decision-matrix.yaml +82 -0
  5. package/bin/data/business/email-professional.yaml +56 -0
  6. package/bin/data/business/incident-report.yaml +75 -0
  7. package/bin/data/business/meeting-notes.yaml +59 -0
  8. package/bin/data/business/project-update.yaml +68 -0
  9. package/bin/data/business/retrospective.yaml +67 -0
  10. package/bin/data/content/blog-intro.yaml +60 -0
  11. package/bin/data/content/blog-outline.yaml +211 -0
  12. package/bin/data/content/landing-page-copy.yaml +77 -0
  13. package/bin/data/content/newsletter.yaml +209 -0
  14. package/bin/data/development/api-documentation.yaml +385 -0
  15. package/bin/data/development/architecture-doc.yaml +326 -0
  16. package/bin/data/development/bug-report.yaml +239 -0
  17. package/bin/data/development/code-review.yaml +110 -0
  18. package/bin/data/development/commit-message.yaml +77 -0
  19. package/bin/data/development/pr-description.yaml +73 -0
  20. package/bin/data/development/release-notes.yaml +93 -0
  21. package/bin/data/marketing/feature-highlight.yaml +76 -0
  22. package/bin/data/marketing/product-announcement.yaml +81 -0
  23. package/bin/data/productivity/brainstorm.yaml +65 -0
  24. package/bin/data/productivity/decision-matrix.yaml +82 -0
  25. package/bin/data/productivity/dict.yaml +59 -0
  26. package/bin/data/productivity/retrospective.yaml +67 -0
  27. package/bin/data/productivity/todo-list.yaml +63 -0
  28. package/bin/data/social/instagram-caption.yaml +62 -0
  29. package/bin/data/social/linkedin-post.yaml +69 -0
  30. package/bin/data/social/social-post.yaml +87 -0
  31. package/bin/data/social/tweet-launch.yaml +62 -0
  32. package/bin/data/social/tweet-thread.yaml +55 -0
  33. package/package.json +4 -3
@@ -0,0 +1,55 @@
1
+ name: tweet-thread
2
+ description: Create engaging Twitter/X thread on any topic
3
+ category: social
4
+ author: Aii Team
5
+ version: 2.0
6
+
7
+ # v0.6.1 Dual-Mode System: Natural Language Input
8
+ input_type: natural_language
9
+
10
+ system_prompt: |
11
+ You are a social media expert specializing in Twitter/X content. When the user provides a topic or message, create an engaging, well-structured thread.
12
+
13
+ **Format:**
14
+
15
+ 1/🧵 [Hook tweet - attention-grabbing opener with question, stat, or bold statement]
16
+
17
+ 2/ [Expand on the hook - provide context or background]
18
+
19
+ 3/ [Key point 1 with specific details or examples]
20
+
21
+ 4/ [Key point 2 with data, story, or insight]
22
+
23
+ 5/ [Key point 3 - practical application or implication]
24
+
25
+ 6/ [Conclusion with call-to-action, question, or memorable takeaway]
26
+
27
+ **Guidelines:**
28
+ - Each tweet under 280 characters
29
+ - Start with strong hook (surprising fact, question, bold claim)
30
+ - Use thread numbering (1/🧵, 2/, 3/, etc.)
31
+ - Break complex ideas into digestible tweets
32
+ - Include relevant emojis sparingly for visual interest
33
+ - End with CTA (follow, comment, share, link)
34
+ - Make each tweet valuable on its own
35
+ - Use line breaks for readability
36
+ - Conversational tone but professional
37
+
38
+ **Optional Parameters:**
39
+ - --tone: educational, inspirational, technical, casual
40
+ - --length: short (4-6 tweets), medium (7-10), long (11-15)
41
+
42
+ **Example:**
43
+ Input: "benefits of RAG systems for enterprise AI"
44
+ Output: 8-tweet thread explaining RAG, benefits, real examples, and CTA to learn more
45
+
46
+ examples:
47
+ - description: Example 1
48
+ command: aii prompt use tweet-thread Launch announcement for our new AI product --tone exciting
49
+
50
+ - description: Example 2
51
+ command: aii prompt use tweet-thread Thread about RAG systems --length medium
52
+
53
+ - description: Example 3
54
+ command: aii prompt use tweet-thread Tips for junior developers
55
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiiware/aii",
3
- "version": "0.23.7",
3
+ "version": "0.24.1",
4
4
  "type": "module",
5
5
  "description": "🪼 AI-powered CLI assistant for terminal productivity",
6
6
  "author": "AiiWare <support@aiiware.com>",
@@ -44,10 +44,11 @@
44
44
  "lint:fix": "eslint src/ --fix",
45
45
  "format": "prettier --write \"src/**/*.ts\"",
46
46
  "clean": "rm -rf dist bin",
47
- "prepublishOnly": "npm run clean && npm run lint && npm run lint:cycles && npm run test:coverage && npm run check:coverage-drift && npm run build && npm audit --omit=dev --omit=optional --audit-level=high",
47
+ "prepublishOnly": "npm run clean && npm run lint && npm run lint:cycles && npm run build && npm run test:coverage && npm run check:coverage-drift && npm audit --omit=dev --omit=optional --audit-level=high",
48
48
  "lint:cycles": "node scripts/check-cycles.mjs",
49
49
  "ratchet": "node scripts/ratchet.mjs",
50
- "check:coverage-drift": "node scripts/check-coverage-drift.mjs"
50
+ "check:coverage-drift": "node scripts/check-coverage-drift.mjs",
51
+ "check:ratchet-integrity": "node scripts/check-ratchet-integrity.mjs"
51
52
  },
52
53
  "engines": {
53
54
  "node": ">=20.0.0"