felo-ai 0.2.45 → 0.2.46

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 (2) hide show
  1. package/README.md +39 -10
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -127,23 +127,48 @@ felo apple-buy-advisor "Is it worth upgrading to iPad Air 13?"
127
127
  /apple-buy-advisor Is it worth upgrading to iPad Air 13?
128
128
  ```
129
129
 
130
+ **Twitter Writer** — [full options →](./felo-twitter-writer/SKILL.md)
131
+
132
+ ```bash
133
+ # Use as Claude Code skill
134
+ /felo-twitter-writer Analyze @paulg's tweet style and extract a style DNA
135
+ /felo-twitter-writer Write 3 tweets about AI trends in @paulg's style
136
+ /felo-twitter-writer Write a Twitter thread about why most startups fail
137
+ ```
138
+
139
+ **SuperAgent** — [full options →](./felo-superAgent/README.md)
140
+
141
+ ```bash
142
+ # Use as Claude Code skill
143
+ /felo-superagent What is the latest news about AI?
144
+ /felo-superagent Tell me more --thread-id <thread_short_id>
145
+ ```
146
+
147
+ ```bash
148
+ # Run script directly
149
+ node felo-superAgent/scripts/run_superagent.mjs --query "What is quantum computing?"
150
+ node felo-superAgent/scripts/run_superagent.mjs --query "Tell me more" --thread-id <thread_short_id>
151
+ ```
152
+
130
153
  **[See 40+ more examples →](./docs/EXAMPLES.md)**
131
154
 
132
155
  ---
133
156
 
134
157
  ## Skills Overview
135
158
 
136
- 7 skills across search, content generation, web scraping, social media, knowledge base, and shopping advice:
159
+ 9 skills across search, content generation, web scraping, social media, knowledge base, shopping advice, Twitter writing, and AI conversation:
137
160
 
138
- | Skill | Description | Docs |
139
- | --------------------------- | ------------------------------------------------------------- | ------------------------------- |
140
- | **felo-search** | Real-time web search with AI answers. Triggers automatically. | [→](./felo-search/) |
141
- | **felo-slides** | Generate PPT from a prompt | [→](./felo-slides/) |
142
- | **felo-web-fetch** | Fetch and extract webpage content | [→](./felo-web-fetch/) |
143
- | **felo-youtube-subtitling** | Fetch YouTube video subtitles | [→](./felo-youtube-subtitling/) |
144
- | **felo-x-search** | Search X (Twitter) tweets, users, replies | [→](./felo-x-search/SKILL.md) |
145
- | **felo-livedoc** | Manage knowledge bases and semantic retrieval | [→](./felo-livedoc/) |
146
- | **apple-buy-advisor** | Research and compare Apple products before you buy | [→](./apple-buy-advisor/) |
161
+ | Skill | Description | Docs |
162
+ | --------------------------- | ------------------------------------------------------------- | ----------------------------------------- |
163
+ | **felo-search** | Real-time web search with AI answers. Triggers automatically. | [→](./felo-search/) |
164
+ | **felo-slides** | Generate PPT from a prompt | [→](./felo-slides/) |
165
+ | **felo-web-fetch** | Fetch and extract webpage content | [→](./felo-web-fetch/) |
166
+ | **felo-youtube-subtitling** | Fetch YouTube video subtitles | [→](./felo-youtube-subtitling/) |
167
+ | **felo-x-search** | Search X (Twitter) tweets, users, replies | [→](./felo-x-search/SKILL.md) |
168
+ | **felo-livedoc** | Manage knowledge bases and semantic retrieval | [→](./felo-livedoc/) |
169
+ | **apple-buy-advisor** | Research and compare Apple products before you buy | [→](./apple-buy-advisor/) |
170
+ | **felo-twitter-writer** | Analyze tweet style DNA and compose tweets, threads, X posts | [→](./felo-twitter-writer/SKILL.md) |
171
+ | **felo-superAgent** | AI conversation with real-time streaming, continuous threads | [→](./felo-superAgent/README.md) |
147
172
 
148
173
  ---
149
174
 
@@ -163,6 +188,8 @@ felo apple-buy-advisor "Is it worth upgrading to iPad Air 13?"
163
188
  /plugin install felo-x-search@felo-ai
164
189
  /plugin install felo-livedoc@felo-ai
165
190
  /plugin install apple-buy-advisor@felo-ai
191
+ /plugin install felo-twitter-writer@felo-ai
192
+ /plugin install felo-superAgent@felo-ai
166
193
  ```
167
194
 
168
195
  ### ClawHub
@@ -177,6 +204,8 @@ clawhub install felo-youtube-subtitling
177
204
  clawhub install felo-x-search
178
205
  clawhub install felo-livedoc
179
206
  clawhub install apple-buy-advisor
207
+ clawhub install felo-twitter-writer
208
+ clawhub install felo-superAgent
180
209
  ```
181
210
 
182
211
  ### Gemini CLI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "felo-ai",
3
- "version": "0.2.45",
3
+ "version": "0.2.46",
4
4
  "description": "Felo AI CLI - real-time search, PPT generation, SuperAgent conversation, LiveDoc management, web fetch, YouTube subtitles, LiveDoc knowledge base, and X (Twitter) search from the terminal",
5
5
  "type": "module",
6
6
  "main": "src/cli.js",
@@ -32,7 +32,8 @@
32
32
  "url": "git+https://github.com/Felo-Inc/felo-skills.git"
33
33
  },
34
34
  "dependencies": {
35
- "commander": "^12.0.0"
35
+ "commander": "^12.0.0",
36
+ "felo-ai": "^0.2.43"
36
37
  },
37
38
  "scripts": {
38
39
  "test": "node --test tests/",