@tryfridayai/cli 0.2.2 → 0.2.4

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 +136 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,136 @@
1
+ # Friday CLI
2
+
3
+ Autonomous AI agent for your terminal. Chat, generate images, create videos, produce voice — all from the command line.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @tryfridayai/cli
9
+ ```
10
+
11
+ Requires Node.js 18+.
12
+
13
+ ## Quick Start
14
+
15
+ ```bash
16
+ # Start chatting
17
+ friday chat
18
+
19
+ # Add API keys (stored in system keychain)
20
+ friday chat
21
+ /keys
22
+ ```
23
+
24
+ You need at least one API key to get started:
25
+
26
+ | Key | Enables |
27
+ |-----|---------|
28
+ | `ANTHROPIC_API_KEY` | Chat (Claude) |
29
+ | `OPENAI_API_KEY` | Chat, Images, Video, Voice |
30
+ | `GOOGLE_API_KEY` | Chat, Images, Video, Voice |
31
+ | `ELEVENLABS_API_KEY` | Voice |
32
+
33
+ ## Features
34
+
35
+ ### Chat
36
+
37
+ Conversational AI powered by Claude, GPT, and Gemini. Sessions auto-resume — close and reopen without losing context.
38
+
39
+ ```
40
+ > explain this codebase
41
+ > build a landing page for my app
42
+ > find and fix the bug in auth.js
43
+ ```
44
+
45
+ ### Image Generation
46
+
47
+ Generate images with DALL-E, GPT Image, and Google Imagen.
48
+
49
+ ```
50
+ > generate an image of a mountain sunset
51
+ > create a logo for my startup
52
+ ```
53
+
54
+ ### Video Generation
55
+
56
+ Create videos with OpenAI Sora and Google Veo.
57
+
58
+ ```
59
+ > generate a 10-second video of ocean waves
60
+ ```
61
+
62
+ ### Voice
63
+
64
+ Text-to-speech with OpenAI TTS, Google Cloud TTS, and ElevenLabs.
65
+
66
+ ```
67
+ > read this paragraph aloud
68
+ > generate speech in a warm friendly tone
69
+ ```
70
+
71
+ ## Commands
72
+
73
+ Type these in the chat:
74
+
75
+ | Command | Description |
76
+ |---------|-------------|
77
+ | `/help` | Show all commands |
78
+ | `/keys` | Add or manage API keys |
79
+ | `/model` | Enable/disable models, see pricing |
80
+ | `/plugins` | Install plugins (GitHub, Figma, email, etc.) |
81
+ | `/config` | View and edit settings |
82
+ | `/clear` | Clear chat history |
83
+ | `/quit` | Exit |
84
+
85
+ ## Models
86
+
87
+ ### Chat Models
88
+ - Claude 4 Sonnet / Opus (Anthropic)
89
+ - GPT-5.2 / GPT-4o (OpenAI)
90
+ - Gemini 3 Pro / Flash (Google)
91
+
92
+ ### Image Models
93
+ - GPT Image 1.5 (OpenAI)
94
+ - Imagen 4 Ultra / Standard / Fast (Google)
95
+
96
+ ### Video Models
97
+ - Sora 2 / Sora 2 Pro (OpenAI)
98
+ - Veo 3.1 / Veo 3.1 Fast (Google)
99
+
100
+ ### Voice Models
101
+ - GPT-4o Mini TTS (OpenAI)
102
+ - Google Cloud TTS (WaveNet, Neural2, Standard)
103
+ - ElevenLabs Eleven v3, Flash v2.5, Turbo v2.5
104
+
105
+ ## Plugins
106
+
107
+ Extend Friday with MCP-based plugins:
108
+
109
+ ```
110
+ /plugins
111
+ ```
112
+
113
+ Available plugins: GitHub, Figma, Firecrawl, Resend (email), Discord, Reddit, Twitter, Gmail, Google Drive, Supabase, and more.
114
+
115
+ ## Architecture
116
+
117
+ The CLI (`@tryfridayai/cli`) is a thin interface over the runtime (`friday-runtime`). The runtime handles agent orchestration, MCP servers, permissions, sessions, and provider management.
118
+
119
+ ```
120
+ friday chat
121
+ └── CLI (this package)
122
+ └── friday-runtime
123
+ ├── Claude Agent SDK
124
+ ├── MCP Servers (filesystem, terminal, media, plugins)
125
+ └── AI Providers (OpenAI, Google, ElevenLabs)
126
+ ```
127
+
128
+ ## Links
129
+
130
+ - Website: [tryfriday.ai](https://tryfriday.ai)
131
+ - Documentation: [docs.tryfriday.ai](https://docs.tryfriday.ai)
132
+ - GitHub: [github.com/tryfridayai/friday_cli](https://github.com/tryfridayai/friday_cli)
133
+
134
+ ## License
135
+
136
+ MIT
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.2.2",
6
+ "version": "0.2.4",
7
7
  "description": "Friday AI — autonomous agent for your terminal. Chat, build apps, research, automate tasks.",
8
8
  "type": "module",
9
9
  "bin": {