umadev 1.0.4 → 1.0.6
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 +8 -5
- package/bin/cli.js +2 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# UmaDev
|
|
2
2
|
|
|
3
|
-
> **AI
|
|
4
|
-
> logged into through a 9-phase commercial
|
|
5
|
-
>
|
|
3
|
+
> **A governance rail around your AI coding base** — drives the Claude Code /
|
|
4
|
+
> Codex / OpenCode you already logged into through a 9-phase commercial
|
|
5
|
+
> delivery pipeline. The base writes the code; UmaDev runs the process.
|
|
6
|
+
> **No API key needed.** Early-stage and governance-first.
|
|
6
7
|
|
|
7
8
|
## Install
|
|
8
9
|
|
|
@@ -32,8 +33,10 @@ umadev report # emit UD-EVID-004 compliance map
|
|
|
32
33
|
## Why this exists
|
|
33
34
|
|
|
34
35
|
UmaDev is **not** an LLM client. It does not call any AI API.
|
|
35
|
-
Instead it **drives** the
|
|
36
|
-
through a deterministic 9-phase
|
|
36
|
+
Instead it **drives** one of the three first-class base CLIs you already
|
|
37
|
+
use (`claude`, `codex`, `opencode`) through a deterministic 9-phase
|
|
38
|
+
pipeline — the brain stays in the base. Wider model coverage is the base's
|
|
39
|
+
job (route it to a third-party / local model), not a new UmaDev driver:
|
|
37
40
|
|
|
38
41
|
```
|
|
39
42
|
research → docs → ⏸ docs_confirm → spec → frontend → ⏸ preview_confirm → backend → quality → delivery
|
package/bin/cli.js
CHANGED
|
@@ -24,6 +24,8 @@ const PLATFORM_PACKAGES = {
|
|
|
24
24
|
'linux-x64': '@umacloud/cli-linux-x64',
|
|
25
25
|
'linux-arm64': '@umacloud/cli-linux-arm64',
|
|
26
26
|
'win32-x64': '@umacloud/cli-win32-x64',
|
|
27
|
+
// Windows on ARM runs x64 binaries via built-in emulation; reuse the x64 build.
|
|
28
|
+
'win32-arm64': '@umacloud/cli-win32-x64',
|
|
27
29
|
};
|
|
28
30
|
|
|
29
31
|
function platformKey() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "umadev",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "A project-director Agent for AI coding hosts — drives your logged-in Claude Code / Codex through a 9-phase commercial delivery pipeline with governance. No API key needed.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"node": ">=18"
|
|
35
35
|
},
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@umacloud/cli-darwin-arm64": "1.0.
|
|
38
|
-
"@umacloud/cli-darwin-x64": "1.0.
|
|
39
|
-
"@umacloud/cli-linux-x64": "1.0.
|
|
40
|
-
"@umacloud/cli-linux-arm64": "1.0.
|
|
41
|
-
"@umacloud/cli-win32-x64": "1.0.
|
|
42
|
-
"@umacloud/model-e5-small": "1.0.
|
|
43
|
-
"@umacloud/knowledge": "1.0.
|
|
37
|
+
"@umacloud/cli-darwin-arm64": "1.0.6",
|
|
38
|
+
"@umacloud/cli-darwin-x64": "1.0.6",
|
|
39
|
+
"@umacloud/cli-linux-x64": "1.0.6",
|
|
40
|
+
"@umacloud/cli-linux-arm64": "1.0.6",
|
|
41
|
+
"@umacloud/cli-win32-x64": "1.0.6",
|
|
42
|
+
"@umacloud/model-e5-small": "1.0.6",
|
|
43
|
+
"@umacloud/knowledge": "1.0.6"
|
|
44
44
|
}
|
|
45
45
|
}
|