@getappz/appz-darwin-x64 0.1.0
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 +70 -0
- package/bin/appz +0 -0
- package/package.json +19 -0
package/README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
<pre>
|
|
4
|
+
█████╗ ██████╗ ██████╗ ███████╗
|
|
5
|
+
██╔══██╗██╔══██╗██╔══██╗╚══███╔╝
|
|
6
|
+
███████║██████╔╝██████╔╝ ███╔╝
|
|
7
|
+
██╔══██║██╔═══╝ ██╔═══╝ ███╔╝
|
|
8
|
+
██║ ██║██║ ██║ ███████╗
|
|
9
|
+
╚═╝ ╚═╝╚═╝ ╚═╝ ╚══════╝
|
|
10
|
+
</pre>
|
|
11
|
+
|
|
12
|
+
**Zero-config toolchains, mise, and deploy.**
|
|
13
|
+
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
# appz
|
|
17
|
+
|
|
18
|
+
`appz` detects your stack (Node, Rust, Python, ...), wires up
|
|
19
|
+
[`mise`](https://mise.jdx.dev) with cached, incremental tasks instead of a
|
|
20
|
+
hand-rolled build cache, and drives install/build/dev/test/lint/format/deploy
|
|
21
|
+
through one command — no config to write by hand.
|
|
22
|
+
|
|
23
|
+
- **Zero-config detection** — reads your project, not a config file, to know
|
|
24
|
+
how to build it (96+ frameworks, mise tool versions, output dirs).
|
|
25
|
+
- **mise-native, not another task runner** — generates `[tools]` + `[tasks]`
|
|
26
|
+
with `sources`/`outputs`, so mise's own cache — not a second one — decides
|
|
27
|
+
what to skip.
|
|
28
|
+
- **Unified deploy** — `appz deploy` drives each platform's own CLI (Vercel,
|
|
29
|
+
Netlify, ...) instead of competing with them.
|
|
30
|
+
- **Built for agents too** — `appz mcp` exposes detect/build/deploy as MCP
|
|
31
|
+
tools, so an AI agent can drive the same pipeline a human does.
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
appz init # detect toolchains, scaffold appz.jsonc + mise.toml
|
|
35
|
+
appz install # mise + package manager install
|
|
36
|
+
appz build # mise run build (skips when inputs are unchanged)
|
|
37
|
+
appz dev # start the dev server
|
|
38
|
+
appz test # run tests
|
|
39
|
+
appz lint # run the linter
|
|
40
|
+
appz format # run the formatter
|
|
41
|
+
appz deploy # deploy via the target platform's own CLI
|
|
42
|
+
appz doctor # diagnose project stack, config, and suggestions
|
|
43
|
+
appz mcp # stdio MCP server exposing detect/doctor/run to AI agents
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## MCP server
|
|
47
|
+
|
|
48
|
+
`appz mcp` speaks the [Model Context Protocol](https://modelcontextprotocol.io)
|
|
49
|
+
over stdio so AI agents can drive appz directly. Tools:
|
|
50
|
+
|
|
51
|
+
- `detect` — JSON toolchain report for a directory
|
|
52
|
+
- `doctor` — JSON diagnosis + suggestions
|
|
53
|
+
- `run` — execute a lifecycle command (`install`/`build`/`test`/`lint`/`format`)
|
|
54
|
+
and return its output
|
|
55
|
+
|
|
56
|
+
Point an MCP client at `appz mcp` (e.g. `{"command": "appz", "args": ["mcp"]}`).
|
|
57
|
+
|
|
58
|
+
## Layout
|
|
59
|
+
|
|
60
|
+
- `crates/appz` — the CLI binary
|
|
61
|
+
- `crates/appz-core` — toolchain detection, `mise.toml` generation, and the
|
|
62
|
+
doctor/report logic `appz` runs on top of
|
|
63
|
+
- `crates/appz-deploy` — the `DeployProvider` trait + per-platform CLIs
|
|
64
|
+
- `crates/command` — shell-free process execution (arg-vector, timeouts)
|
|
65
|
+
|
|
66
|
+
## Build
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
cargo build --release
|
|
70
|
+
```
|
package/bin/appz
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@getappz/appz-darwin-x64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Detect toolchains, wire up mise, and run install/build/dev/test/lint/format/doctor for any project.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"appz": "bin/appz"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/getappz/cli"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"bin",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"license": "Apache-2.0",
|
|
17
|
+
"os": ["darwin"],
|
|
18
|
+
"cpu": ["x64"]
|
|
19
|
+
}
|