capix-code 2.3.0 → 2.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capix-code",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "Capix Code — decentralized AI coding agent with GPU marketplace",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -1,22 +0,0 @@
1
- {
2
- "provider": "capix",
3
- "model": "capix/auto",
4
- "apiBaseUrl": "https://www.capix.network/api/v1",
5
- "inferenceBaseUrl": "https://www.capix.network/api/v1",
6
- "updateBaseUrl": "https://www.capix.network/api/v1",
7
- "sandbox": "restricted",
8
- "telemetry": false,
9
- "contentLogging": false,
10
- "settlement": {
11
- "enabled": false,
12
- "rpcUrl": "",
13
- "programId": "",
14
- "cluster": "localnet"
15
- },
16
- "cpx": {
17
- "mint": "",
18
- "decimals": 9,
19
- "pricingSource": "protocol-reference",
20
- "maxPriceAgeSeconds": 60
21
- }
22
- }
@@ -1,248 +0,0 @@
1
- {
2
- "provider": {
3
- "capix": {
4
- "npm": "@capix/runtime-provider",
5
- "name": "Capix",
6
- "options": {
7
- "headers": {
8
- "X-Capix-Source": "capix-code"
9
- }
10
- },
11
- "models": {
12
- "auto": {
13
- "name": "Capix Auto (smart route — picks the best model for the task)",
14
- "limit": { "context": 128000, "output": 64000 }
15
- },
16
- "supergemma-gemma3-27b": {
17
- "name": "SuperGemma · Gemma 3 27B",
18
- "limit": { "context": 131072, "output": 32768 }
19
- },
20
- "supergemma-gemma3-12b": {
21
- "name": "SuperGemma · Gemma 3 12B",
22
- "limit": { "context": 131072, "output": 16384 }
23
- },
24
- "supergemma-gemma3-4b": {
25
- "name": "SuperGemma · Gemma 3 4B",
26
- "limit": { "context": 131072, "output": 8192 }
27
- },
28
- "supergemma-codegemma-7b": {
29
- "name": "SuperGemma · CodeGemma 7B",
30
- "limit": { "context": 8192, "output": 8192 }
31
- },
32
- "qwen2.5-coder-7b": {
33
- "name": "Qwen2.5-Coder 7B",
34
- "limit": { "context": 131072, "output": 16384 }
35
- },
36
- "qwen2.5-coder-32b": {
37
- "name": "Qwen2.5-Coder 32B (AWQ)",
38
- "limit": { "context": 131072, "output": 32768 }
39
- },
40
- "llama-3.3-70b-fp8": {
41
- "name": "Llama 3.3 70B (FP8)",
42
- "limit": { "context": 131072, "output": 32768 }
43
- }
44
- }
45
- }
46
- },
47
- "model": "{env:CAPIX_MODEL:capix/auto}",
48
- "small_model": "capix/supergemma-gemma3-4b",
49
- "enabled_providers": ["capix"],
50
- "permission": {
51
- "edit": "ask",
52
- "bash": "ask"
53
- },
54
- "mcp": {
55
- "capix": {
56
- "type": "local",
57
- "command": ["npx", "-y", "@capix/mcp", "server", "--stdio"],
58
- "enabled": true,
59
- "environment": {}
60
- }
61
- },
62
- "share": "manual",
63
- "autoupdate": false,
64
- "plugin": ["./src/plugin.ts"],
65
- "command": {
66
- "plan": {
67
- "description": "Create a research-first implementation plan",
68
- "model": "capix/auto",
69
- "template": "file://commands/plan.md"
70
- },
71
- "agents": {
72
- "description": "List active agents, their trust levels, generation, and status",
73
- "template": "file://commands/agents.md"
74
- },
75
- "delegate": {
76
- "description": "Delegate a bounded task to a specialist agent",
77
- "model": "capix/auto",
78
- "subtask": true,
79
- "template": "file://commands/delegate.md"
80
- },
81
- "skills": {
82
- "description": "Browse the skill registry",
83
- "template": "file://commands/skills.md"
84
- },
85
- "covenant": {
86
- "description": "Show the current Project Covenant and active rules",
87
- "template": "file://commands/covenant.md"
88
- },
89
- "memory": {
90
- "description": "Search memory — show recent memory nodes by type",
91
- "template": "file://commands/memory.md"
92
- },
93
- "remember": {
94
- "description": "Write a memory node — persist a decision, fact, constraint, or observation",
95
- "template": "file://commands/remember.md"
96
- },
97
- "forget": {
98
- "description": "Mark a memory node as superseded",
99
- "template": "file://commands/forget.md"
100
- },
101
- "graph": {
102
- "description": "Query the knowledge graph — nodes and relationships",
103
- "template": "file://commands/graph.md"
104
- },
105
- "decisions": {
106
- "description": "List recent decisions from memory — alternatives, evidence, trade-offs",
107
- "template": "file://commands/decisions.md"
108
- },
109
- "checkpoint": {
110
- "description": "Create a verified checkpoint — repo state, tests, plan, agents, infra, costs",
111
- "template": "file://commands/checkpoint.md"
112
- },
113
- "review": {
114
- "description": "Run an adversarial code review",
115
- "model": "capix/auto",
116
- "template": "file://commands/review.md"
117
- },
118
- "verify-checks": {
119
- "description": "Run verification checks — build, type, lint, test, security, diff",
120
- "template": "file://commands/verify-checks.md"
121
- },
122
- "handoff": {
123
- "description": "Create an agent handoff / exit report",
124
- "model": "capix/auto",
125
- "template": "file://commands/handoff.md"
126
- },
127
- "context": {
128
- "description": "Show the current context budget and what was retrieved and why",
129
- "template": "file://commands/context.md"
130
- },
131
- "compact": {
132
- "description": "Compact the current session context — preserve critical constraints",
133
- "template": "file://commands/compact.md"
134
- },
135
- "deploy": {
136
- "description": "Deploy infrastructure via Capix MCP — quote, approve, provision",
137
- "template": "file://commands/deploy.md"
138
- },
139
- "cleanup": {
140
- "description": "Clean up task resources — destroy infra, reconcile, capture billing",
141
- "template": "file://commands/cleanup.md"
142
- },
143
- "receipts": {
144
- "description": "List work receipts — useful-work evidence and anchoring status",
145
- "template": "file://commands/receipts.md"
146
- },
147
- "network": {
148
- "description": "List VPCs, create VPCs, manage subnets, view routes, manage security groups",
149
- "model": "capix/auto",
150
- "template": "file://commands/network.md"
151
- },
152
- "endpoints": {
153
- "description": "List endpoints, create endpoints, add custom domains, view endpoint health",
154
- "model": "capix/auto",
155
- "template": "file://commands/endpoints.md"
156
- },
157
- "ssh": {
158
- "description": "Connect to a deployment, port forward, revoke an SSH session",
159
- "model": "capix/auto",
160
- "template": "file://commands/ssh.md"
161
- },
162
- "forward": {
163
- "description": "Forward a local port to a deployment port",
164
- "model": "capix/auto",
165
- "template": "file://commands/forward.md"
166
- },
167
- "logs": {
168
- "description": "Stream deployment logs, filter by level, download",
169
- "template": "file://commands/logs.md"
170
- },
171
- "metrics": {
172
- "description": "View deployment metrics — CPU, GPU, memory, network",
173
- "template": "file://commands/metrics.md"
174
- },
175
- "stop": {
176
- "description": "Stop a deployment",
177
- "model": "capix/auto",
178
- "template": "file://commands/stop.md"
179
- },
180
- "secure": {
181
- "description": "Deploy a confidential VM/GPU, view TEE status",
182
- "model": "capix/auto",
183
- "template": "file://commands/secure.md"
184
- },
185
- "attest": {
186
- "description": "Fetch and verify attestation evidence",
187
- "template": "file://commands/attest.md"
188
- },
189
- "verify-proof": {
190
- "description": "Verify a proof or attestation",
191
- "template": "file://commands/verify-proof.md"
192
- },
193
- "proofs": {
194
- "description": "List and inspect zkVM proofs",
195
- "template": "file://commands/proofs.md"
196
- },
197
- "confidential-models": {
198
- "description": "List and deploy confidential model endpoints",
199
- "model": "capix/auto",
200
- "template": "file://commands/confidential-models.md"
201
- },
202
- "website": {
203
- "description": "Deploy a website from a repo, list websites",
204
- "model": "capix/auto",
205
- "template": "file://commands/website.md"
206
- },
207
- "preview": {
208
- "description": "Create a preview deployment",
209
- "model": "capix/auto",
210
- "template": "file://commands/preview.md"
211
- },
212
- "promote": {
213
- "description": "Promote a preview deployment to production",
214
- "model": "capix/auto",
215
- "template": "file://commands/promote.md"
216
- },
217
- "rollback": {
218
- "description": "Rollback to a previous deployment",
219
- "model": "capix/auto",
220
- "template": "file://commands/rollback.md"
221
- },
222
- "domains": {
223
- "description": "Add, verify, and remove custom domains",
224
- "model": "capix/auto",
225
- "template": "file://commands/domains.md"
226
- },
227
- "analytics": {
228
- "description": "View website analytics",
229
- "template": "file://commands/analytics.md"
230
- },
231
- "open": {
232
- "description": "Open a deployment in the browser",
233
- "template": "file://commands/open.md"
234
- },
235
- "doctor": {
236
- "description": "Diagnose Capix Code installation and connection",
237
- "template": "file://commands/doctor.md"
238
- },
239
- "update": {
240
- "description": "Check for and install Capix Code updates",
241
- "template": "file://commands/update.md"
242
- },
243
- "welcome": {
244
- "description": "First-run onboarding — sign in, check balance, browse models, get started",
245
- "template": "file://commands/welcome.md"
246
- }
247
- }
248
- }