anymorph 0.1.1 → 0.2.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 +41 -0
- package/dist/index.js +483 -625
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -22,6 +22,13 @@ anymorph login
|
|
|
22
22
|
|
|
23
23
|
# Check AI visibility for your domain
|
|
24
24
|
anymorph check yourdomain.com
|
|
25
|
+
|
|
26
|
+
# List workspaces available to your account
|
|
27
|
+
anymorph workspaces
|
|
28
|
+
|
|
29
|
+
# Prepare and validate local GEO strategy artifacts
|
|
30
|
+
anymorph geo prepare yourdomain.com
|
|
31
|
+
anymorph geo validate 20260517T074200Z --repo .
|
|
25
32
|
```
|
|
26
33
|
|
|
27
34
|
## Commands
|
|
@@ -99,6 +106,40 @@ Sign out and clear stored credentials.
|
|
|
99
106
|
anymorph logout
|
|
100
107
|
```
|
|
101
108
|
|
|
109
|
+
### `anymorph workspaces`
|
|
110
|
+
|
|
111
|
+
List workspaces available to the current account.
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
anymorph workspaces
|
|
115
|
+
anymorph workspaces --json
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### `anymorph geo prepare <workspace-or-domain>`
|
|
119
|
+
|
|
120
|
+
Prepare a local GEO strategy run package. By default, the CLI manages tenant
|
|
121
|
+
repos under `~/.anymorph/repos/{domain}`. Use `--repo` to target an explicit
|
|
122
|
+
local checkout.
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
anymorph geo prepare yourdomain.com
|
|
126
|
+
anymorph geo prepare yourdomain.com --repo ~/works/yourdomain.com
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
This initializes `agent/runs/{runId}/manifest.json`, `context.json`, and
|
|
130
|
+
`status.json`. The agent fills the content artifacts separately.
|
|
131
|
+
|
|
132
|
+
### `anymorph geo validate <runId>`
|
|
133
|
+
|
|
134
|
+
Validate local GEO run artifacts before pushing `main`.
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
anymorph geo validate 20260517T074200Z --repo .
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Validation does not update the backend. Backend sync happens from the tenant
|
|
141
|
+
repo GitHub `main` push webhook.
|
|
142
|
+
|
|
102
143
|
## How It Works
|
|
103
144
|
|
|
104
145
|
1. **Login** — OAuth device code flow (like GitHub CLI) creates a secure session
|