@invarn/cli 0.1.1 → 0.1.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/README.md +6 -7
- package/dist/invarn.cjs +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# invarn
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Mobile CI (iOS / Android) from your terminal — with a built-in MCP server so AI agents (Claude Code, Cursor, Claude Desktop, Codex) can drive your builds, tests, and releases from inside a conversation.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -20,15 +20,13 @@ invarn auth login --device-auth # Device code (headless/SSH)
|
|
|
20
20
|
invarn auth login --token inv_human_... # Direct token from the dashboard
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
The token is stored in `~/.config/invarn/config.json`. Check status any time with `invarn auth status`.
|
|
24
|
-
|
|
25
23
|
### 2. Run a build
|
|
26
24
|
|
|
27
25
|
```bash
|
|
28
|
-
# Submit
|
|
26
|
+
# Submit an iOS / Android build on Invarn's infrastructure
|
|
29
27
|
invarn build run --pipeline .ci/pipelines/cibuild.yml --workflow primary
|
|
30
28
|
|
|
31
|
-
# Or run a local
|
|
29
|
+
# Or run a local pipeline on your own machine (via @invarn/cibuild)
|
|
32
30
|
invarn run --pipeline .ci/pipelines/agent-verify.yml --workflow test
|
|
33
31
|
```
|
|
34
32
|
|
|
@@ -40,7 +38,7 @@ Start the MCP server and your AI coding agent can register agents, run builds, a
|
|
|
40
38
|
invarn mcp serve
|
|
41
39
|
```
|
|
42
40
|
|
|
43
|
-
Add it to Claude Code
|
|
41
|
+
Add it to Claude Code, Cursor, Claude Desktop, or Codex:
|
|
44
42
|
|
|
45
43
|
```json
|
|
46
44
|
{
|
|
@@ -127,7 +125,7 @@ invarn run --pipeline .ci/pipelines/agent-verify.yml --workflow test
|
|
|
127
125
|
| `invarn_secrets_list` | List secret/variable metadata (never values) |
|
|
128
126
|
| `invarn_secrets_set` | Create or update a secret or variable |
|
|
129
127
|
|
|
130
|
-
Agents are AI-owned pipelines — created on demand by an orchestrator, invoked by AI, and reported back into the conversation. Each agent has its own credentials, its own pipeline file, and short-lived session tokens scoped to one human user.
|
|
128
|
+
Agents are AI-owned pipelines — created on demand by an orchestrator (Claude, Codex, Cursor, …), invoked by AI, and reported back into the conversation. Each agent has its own credentials, its own pipeline file, and short-lived session tokens scoped to one human user. Typical uses: compile the iOS/Android app, run unit tests, produce an IPA/APK, push a TestFlight build.
|
|
131
129
|
|
|
132
130
|
## Secrets
|
|
133
131
|
|
|
@@ -146,3 +144,4 @@ There is no read command — once set, values cannot be retrieved through the CL
|
|
|
146
144
|
|
|
147
145
|
- Node.js 22+
|
|
148
146
|
- A registered Invarn organization (sign up at [invarn.com](https://invarn.com))
|
|
147
|
+
- An iOS or Android project connected to Invarn via GitHub
|