50c 2.17.0 → 2.18.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.
- package/README.md +74 -145
- package/package.json +3 -10
- package/payment_system.py +0 -550
- package/requirements.txt +0 -7
- package/server.py +0 -570
package/README.md
CHANGED
|
@@ -1,48 +1,27 @@
|
|
|
1
|
-
# 50c
|
|
1
|
+
# 50c
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
125 AI-powered tools for developers. Cloudflare, WHM, WordPress, n8n, UX testing, and automation with AI oversight.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/50c)
|
|
6
|
+
[](https://50c.ai)
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Install
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
**Visit:** https://50c.ai/docs for interactive API documentation
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## 🎯 What is 50c.ai?
|
|
21
|
-
|
|
22
|
-
We're **not** another AI model.
|
|
23
|
-
|
|
24
|
-
We're the **intelligence layer** that makes ANY AI better through:
|
|
25
|
-
- ✅ Agentic capabilities (AI can use tools autonomously)
|
|
26
|
-
- ✅ Tool orchestration (web, code, database, files, APIs)
|
|
27
|
-
- ✅ MCP integration (connect any MCP server)
|
|
28
|
-
- ✅ Multi-step reasoning (complex problem solving)
|
|
29
|
-
|
|
30
|
-
**Works with:** OpenAI, Claude, Gemini, Mistral, DeepSeek, and more!
|
|
12
|
+
```bash
|
|
13
|
+
npm install -g 50c
|
|
14
|
+
```
|
|
31
15
|
|
|
32
16
|
---
|
|
33
17
|
|
|
34
|
-
##
|
|
18
|
+
## Quick Start
|
|
35
19
|
|
|
36
|
-
###
|
|
37
|
-
|
|
38
|
-
npm install -g 50c
|
|
39
|
-
```
|
|
20
|
+
### 1. Get API Key
|
|
21
|
+
Visit https://50c.ai and sign up for an API key.
|
|
40
22
|
|
|
41
|
-
###
|
|
42
|
-
Visit: https://50c.ai/signup
|
|
43
|
-
Copy your API key: `cv_...`
|
|
23
|
+
### 2. Set Environment Variable
|
|
44
24
|
|
|
45
|
-
### Set Environment Variable
|
|
46
25
|
```bash
|
|
47
26
|
# Linux/Mac
|
|
48
27
|
export FIFTY_C_API_KEY="cv_your_key_here"
|
|
@@ -54,54 +33,60 @@ $env:FIFTY_C_API_KEY="cv_your_key_here"
|
|
|
54
33
|
set FIFTY_C_API_KEY=cv_your_key_here
|
|
55
34
|
```
|
|
56
35
|
|
|
57
|
-
### First Command
|
|
58
|
-
```bash
|
|
59
|
-
npx 50c genius --problem="How do I scale to 1M users?"
|
|
60
|
-
```
|
|
36
|
+
### 3. Run Your First Command
|
|
61
37
|
|
|
62
|
-
### Check Balance
|
|
63
38
|
```bash
|
|
64
39
|
npx 50c check_balance
|
|
40
|
+
npx 50c genius --problem="How do I optimize database queries?"
|
|
65
41
|
```
|
|
66
42
|
|
|
67
43
|
---
|
|
68
44
|
|
|
69
|
-
##
|
|
45
|
+
## Automation Commands
|
|
46
|
+
|
|
47
|
+
### 50c-A (Automate)
|
|
48
|
+
Build tool batches automatically.
|
|
70
49
|
|
|
71
|
-
### 50c-A (Automate) - $0.50/batch
|
|
72
|
-
Build entire tool batches automatically.
|
|
73
50
|
```bash
|
|
74
51
|
npx 50c 50c-a --batch-id batch_4 --plan-file TOOL_COOKBOOK.md
|
|
75
52
|
```
|
|
76
|
-
**Use case**: Automate repetitive development tasks
|
|
77
53
|
|
|
78
|
-
|
|
79
|
-
|
|
54
|
+
**Cost**: $0.50/batch
|
|
55
|
+
|
|
56
|
+
### 50c-AO (Automate + Oversight)
|
|
57
|
+
Build with AI quality review.
|
|
58
|
+
|
|
80
59
|
```bash
|
|
81
60
|
npx 50c 50c-ao --batch-id batch_5 --review true
|
|
82
61
|
```
|
|
83
|
-
**Use case**: Production-grade automation with safety checks
|
|
84
62
|
|
|
85
|
-
|
|
86
|
-
|
|
63
|
+
**Cost**: $0.60/batch (includes quality review)
|
|
64
|
+
|
|
65
|
+
### 50c-SD (Suggest + Decide)
|
|
66
|
+
AI makes architectural decisions.
|
|
67
|
+
|
|
87
68
|
```bash
|
|
88
|
-
npx 50c 50c-sd --problem "Should we refactor
|
|
69
|
+
npx 50c 50c-sd --problem "Should we refactor?" --context "6K line file"
|
|
89
70
|
```
|
|
90
|
-
**Use case**: Technical decision-making with AI reasoning
|
|
91
71
|
|
|
92
|
-
|
|
93
|
-
|
|
72
|
+
**Cost**: $0.15/decision
|
|
73
|
+
|
|
74
|
+
### 50c-SA (Suggest + Automate)
|
|
75
|
+
Self-driving assistant that chains tools.
|
|
76
|
+
|
|
94
77
|
```bash
|
|
95
|
-
npx 50c 50c-sa --context "Add 38 new tools
|
|
78
|
+
npx 50c 50c-sa --context "Add 38 new tools" --auto-execute true
|
|
96
79
|
```
|
|
97
|
-
|
|
80
|
+
|
|
81
|
+
**Cost**: $0.05 + tool costs
|
|
98
82
|
|
|
99
83
|
---
|
|
100
84
|
|
|
101
|
-
##
|
|
85
|
+
## 125 Tools Available
|
|
102
86
|
|
|
103
87
|
### Cloudflare (32 tools)
|
|
104
|
-
DNS, SSL, firewall,
|
|
88
|
+
DNS management, SSL configuration, firewall rules, worker deployment, cache control, analytics.
|
|
89
|
+
|
|
105
90
|
```bash
|
|
106
91
|
npx 50c cf_list_zones
|
|
107
92
|
npx 50c cf_create_dns --zone-id=abc123 --name=api --content=1.2.3.4
|
|
@@ -110,7 +95,8 @@ npx 50c cf_purge_cache --zone-id=abc123 --purge_everything=true
|
|
|
110
95
|
```
|
|
111
96
|
|
|
112
97
|
### WHM/cPanel (38 tools)
|
|
113
|
-
|
|
98
|
+
Server management, account operations, backups, email, databases, SSL automation.
|
|
99
|
+
|
|
114
100
|
```bash
|
|
115
101
|
npx 50c whm_list_accounts
|
|
116
102
|
npx 50c whm_create_account --username=example --domain=example.com
|
|
@@ -119,15 +105,17 @@ npx 50c whm_autossl_run --user=example
|
|
|
119
105
|
```
|
|
120
106
|
|
|
121
107
|
### WordPress (14 tools)
|
|
122
|
-
|
|
108
|
+
Content management, plugin updates, theme management.
|
|
109
|
+
|
|
123
110
|
```bash
|
|
124
111
|
npx 50c wp_list_pages
|
|
125
|
-
npx 50c wp_create_post --title="Hello World" --content="
|
|
112
|
+
npx 50c wp_create_post --title="Hello World" --content="Content here"
|
|
126
113
|
npx 50c wp_update_plugin --plugin=akismet
|
|
127
114
|
```
|
|
128
115
|
|
|
129
116
|
### n8n Workflows (16 tools)
|
|
130
|
-
Workflow automation,
|
|
117
|
+
Workflow automation, execution management, credential handling.
|
|
118
|
+
|
|
131
119
|
```bash
|
|
132
120
|
npx 50c n8n_list_workflows
|
|
133
121
|
npx 50c n8n_create_workflow --name="My Workflow" --nodes='[...]'
|
|
@@ -135,7 +123,8 @@ npx 50c n8n_activate_workflow --id=123
|
|
|
135
123
|
```
|
|
136
124
|
|
|
137
125
|
### UX/Design Testing (17 tools)
|
|
138
|
-
|
|
126
|
+
Accessibility audits, contrast checking, A/B testing, color palettes, performance analysis.
|
|
127
|
+
|
|
139
128
|
```bash
|
|
140
129
|
npx 50c ux_contrast_check --foreground=#000000 --background=#FFFFFF
|
|
141
130
|
npx 50c ux_a11y_check --html="<div>Content</div>"
|
|
@@ -143,18 +132,19 @@ npx 50c ux_roast --html="<html>...</html>"
|
|
|
143
132
|
npx 50c ux_ab_winner --html_a="<div>A</div>" --html_b="<div>B</div>"
|
|
144
133
|
```
|
|
145
134
|
|
|
146
|
-
###
|
|
135
|
+
### Problem Solving (8 tools)
|
|
136
|
+
|
|
147
137
|
```bash
|
|
148
138
|
# Deep problem solving with research
|
|
149
139
|
npx 50c genius --problem="How do I scale to 1M users?" --research=true
|
|
150
140
|
|
|
151
|
-
# Brutal code review
|
|
141
|
+
# Brutal code review (3 flaws + fixes)
|
|
152
142
|
npx 50c roast --code="$(cat app.py)"
|
|
153
143
|
|
|
154
|
-
# Quick hints (5
|
|
144
|
+
# Quick hints (5 hints, 2 words each)
|
|
155
145
|
npx 50c hints --query="Why is my API slow?"
|
|
156
146
|
|
|
157
|
-
#
|
|
147
|
+
# Context-based suggestions
|
|
158
148
|
npx 50c suggest --recent-messages='["Added auth", "Need tests"]'
|
|
159
149
|
|
|
160
150
|
# Name your product
|
|
@@ -166,103 +156,42 @@ npx 50c price_it --product="Developer tools platform"
|
|
|
166
156
|
|
|
167
157
|
---
|
|
168
158
|
|
|
169
|
-
##
|
|
170
|
-
|
|
171
|
-
**Base URL:** https://50c.ai
|
|
172
|
-
|
|
173
|
-
- `GET /health` - Health check
|
|
174
|
-
- `GET /docs` - Interactive API docs
|
|
175
|
-
- `GET /agents` - List available agents
|
|
176
|
-
- `GET /tools` - List available tools
|
|
177
|
-
- `POST /chat` - Main chat with tools
|
|
178
|
-
- `POST /chat/simple` - Quick chat
|
|
179
|
-
|
|
180
|
-
---
|
|
159
|
+
## Pricing
|
|
181
160
|
|
|
182
|
-
|
|
161
|
+
All tools use a credit-based system:
|
|
183
162
|
|
|
184
|
-
|
|
185
|
-
|
|
163
|
+
- **Free tools**: `check_balance`, `web_search`, `page_fetch`
|
|
164
|
+
- **Problem solving**: $0.02 - $0.50 per use
|
|
165
|
+
- **Automation**: $0.50 - $0.60 per batch
|
|
166
|
+
- **Infrastructure**: $0.02 - $0.05 per operation
|
|
186
167
|
|
|
187
|
-
|
|
188
|
-
Make existing AI better, don't replace it.
|
|
189
|
-
|
|
190
|
-
### Platform Play
|
|
191
|
-
Infrastructure everyone needs.
|
|
192
|
-
|
|
193
|
-
### Token Economy
|
|
194
|
-
Fair pricing. Earn OR buy coins.
|
|
195
|
-
|
|
196
|
-
**"Augmenting and Partner Intelligence"** 🔥
|
|
168
|
+
Visit https://50c.ai for current pricing and to purchase credits.
|
|
197
169
|
|
|
198
170
|
---
|
|
199
171
|
|
|
200
|
-
##
|
|
172
|
+
## Features
|
|
201
173
|
|
|
202
|
-
**
|
|
203
|
-
|
|
204
|
-
-
|
|
205
|
-
-
|
|
206
|
-
-
|
|
207
|
-
|
|
208
|
-
**Why users pay:**
|
|
209
|
-
- We solve problems, not just chat
|
|
210
|
-
- Works with their preferred model
|
|
211
|
-
- Tools and capabilities included
|
|
212
|
-
- Fair, transparent pricing
|
|
174
|
+
- **125 AI-powered tools** across multiple domains
|
|
175
|
+
- **Automation with AI oversight** (50c-A, 50c-AO, 50c-SD, 50c-SA)
|
|
176
|
+
- **MCP integration** for AI agents (Claude, Cursor, etc.)
|
|
177
|
+
- **Credit-based pricing** - pay only for what you use
|
|
178
|
+
- **RESTful API** and CLI interface
|
|
179
|
+
- **Production-ready** infrastructure tools
|
|
213
180
|
|
|
214
181
|
---
|
|
215
182
|
|
|
216
|
-
##
|
|
183
|
+
## Documentation
|
|
217
184
|
|
|
218
|
-
|
|
219
|
-
Visit: https://50c.ai/docs
|
|
220
|
-
|
|
221
|
-
### Test with curl
|
|
222
|
-
```bash
|
|
223
|
-
curl https://50c.ai/health
|
|
224
|
-
curl https://50c.ai/agents
|
|
225
|
-
```
|
|
226
|
-
|
|
227
|
-
### Test with Memex
|
|
228
|
-
```python
|
|
229
|
-
genius_mode(problem="Your question")
|
|
230
|
-
check_balance()
|
|
231
|
-
```
|
|
232
|
-
|
|
233
|
-
---
|
|
234
|
-
|
|
235
|
-
## 🏗️ Local Development
|
|
236
|
-
|
|
237
|
-
```powershell
|
|
238
|
-
# Activate environment
|
|
239
|
-
.\.venv\Scripts\activate
|
|
240
|
-
|
|
241
|
-
# Run API server
|
|
242
|
-
python api_server_v2.py
|
|
243
|
-
|
|
244
|
-
# Run MCP server
|
|
245
|
-
python server.py
|
|
246
|
-
```
|
|
185
|
+
**Website**: https://50c.ai
|
|
247
186
|
|
|
248
187
|
---
|
|
249
188
|
|
|
250
|
-
##
|
|
189
|
+
## License
|
|
251
190
|
|
|
252
|
-
-
|
|
253
|
-
- ✅ SSL Secured
|
|
254
|
-
- ✅ Agents Active
|
|
255
|
-
- ✅ Tools Ready
|
|
256
|
-
- ✅ MCP Integrated
|
|
191
|
+
Proprietary - Commercial use requires API key from https://50c.ai
|
|
257
192
|
|
|
258
|
-
|
|
259
|
-
**Server:** https://50c.ai
|
|
260
|
-
**Tagline:** "Our Two Cents is Worth Fifty" 🔥
|
|
193
|
+
Contact: https://50c.ai for support and enterprise licensing.
|
|
261
194
|
|
|
262
195
|
---
|
|
263
196
|
|
|
264
|
-
**Built
|
|
265
|
-
**Ecosystem:** hey.ooo + 50c.ai + Genxis
|
|
266
|
-
**Category:** Augmenting and Partner Intelligence
|
|
267
|
-
|
|
268
|
-
**Let's augment the world!** 🚀
|
|
197
|
+
**Built by genxis.com**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "50c",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.18.1",
|
|
4
4
|
"description": "125 AI-powered tools + automation. Cloudflare, WHM, WordPress, n8n, UX testing with AI oversight. Built by genxis.com.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -41,16 +41,9 @@
|
|
|
41
41
|
},
|
|
42
42
|
"files": [
|
|
43
43
|
"bin/",
|
|
44
|
-
"server.py",
|
|
45
|
-
"payment_system.py",
|
|
46
|
-
"requirements.txt",
|
|
47
44
|
"README.md",
|
|
48
45
|
"LICENSE"
|
|
49
46
|
],
|
|
50
|
-
"dependencies": {
|
|
51
|
-
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"puppeteer": "^24.36.1"
|
|
55
|
-
}
|
|
47
|
+
"dependencies": {},
|
|
48
|
+
"devDependencies": {}
|
|
56
49
|
}
|