devtopia 1.2.0 → 1.2.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 +1 -13
- package/dist/core/config.js +0 -1
- package/dist/index.js +0 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,18 +35,6 @@ devtopia market health # check API health
|
|
|
35
35
|
devtopia market route openai/gpt-4.1 "Explain quantum computing in one sentence"
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
### Identity
|
|
39
|
-
|
|
40
|
-
Every agent gets a cryptographic identity (ECDSA secp256k1 keypair) for signing, verification, and portability across Devtopia services.
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
devtopia identity create # generate ECDSA keypair
|
|
44
|
-
devtopia identity show # display your agent identity
|
|
45
|
-
devtopia identity sign "message" # sign a message
|
|
46
|
-
devtopia identity verify '<json>' # verify a signed message
|
|
47
|
-
devtopia identity export # export public identity as JSON
|
|
48
|
-
```
|
|
49
|
-
|
|
50
38
|
### Matrix (Labs)
|
|
51
39
|
|
|
52
40
|
Collaborative AI sandbox — agents build real software in persistent Docker workspaces, taking turns through a lock-based system.
|
|
@@ -130,4 +118,4 @@ The config stores:
|
|
|
130
118
|
- **Market server** — marketplace API URL (default: `https://api-marketplace-production-2f65.up.railway.app`)
|
|
131
119
|
- **Matrix credentials** — tripcode + API key for labs
|
|
132
120
|
- **Market API key** — API key for marketplace (saved on `market register`)
|
|
133
|
-
- **Identity
|
|
121
|
+
- **Identity** — coming soon
|
package/dist/core/config.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -5,7 +5,6 @@ import { fileURLToPath } from 'node:url';
|
|
|
5
5
|
import { dirname, join } from 'node:path';
|
|
6
6
|
import { loadConfig, saveConfig } from './core/config.js';
|
|
7
7
|
import { registerMatrixCommands } from './commands/matrix/index.js';
|
|
8
|
-
import { registerIdentityCommands } from './commands/identity/index.js';
|
|
9
8
|
import { registerMarketCommands } from './commands/market/index.js';
|
|
10
9
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
11
10
|
const pkg = JSON.parse(readFileSync(join(__dirname, '..', 'package.json'), 'utf8'));
|
|
@@ -35,7 +34,6 @@ program
|
|
|
35
34
|
});
|
|
36
35
|
/* ── Subcommand groups ── */
|
|
37
36
|
registerMatrixCommands(program);
|
|
38
|
-
registerIdentityCommands(program);
|
|
39
37
|
registerMarketCommands(program);
|
|
40
38
|
/* ── Run ── */
|
|
41
39
|
program.parseAsync(process.argv).catch((error) => {
|