anymorph 0.1.1 → 0.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 +85 -0
- package/dist/index.js +1211 -781
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -22,6 +22,14 @@ 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 init --repo .
|
|
31
|
+
anymorph geo prepare yourdomain.com
|
|
32
|
+
anymorph geo validate 20260517T074200Z --repo .
|
|
25
33
|
```
|
|
26
34
|
|
|
27
35
|
## Commands
|
|
@@ -99,6 +107,83 @@ Sign out and clear stored credentials.
|
|
|
99
107
|
anymorph logout
|
|
100
108
|
```
|
|
101
109
|
|
|
110
|
+
### `anymorph workspaces`
|
|
111
|
+
|
|
112
|
+
List workspaces available to the current account.
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
anymorph workspaces
|
|
116
|
+
anymorph workspaces --json
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### `anymorph geo prepare <workspace-or-domain>`
|
|
120
|
+
|
|
121
|
+
Prepare a local GEO strategy run package. By default, the CLI manages tenant
|
|
122
|
+
repos under `~/.anymorph/repos/{domain}`. Use `--repo` to target an explicit
|
|
123
|
+
local checkout.
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
anymorph geo init --repo ~/works/yourdomain.com
|
|
127
|
+
anymorph geo prepare yourdomain.com
|
|
128
|
+
anymorph geo prepare yourdomain.com --repo ~/works/yourdomain.com
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
`prepare` syncs the GEO scaffold first unless `--skip-scaffold` is passed. It
|
|
132
|
+
then initializes `agent/runs/{runId}/manifest.json`, `context.json`,
|
|
133
|
+
`intents.json`, `crawl_logs.json`, and `status.json`. The agent fills the
|
|
134
|
+
content artifacts separately.
|
|
135
|
+
|
|
136
|
+
### `anymorph geo init`
|
|
137
|
+
|
|
138
|
+
Initialize a local tenant repo for GEO work.
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
anymorph geo init --repo .
|
|
142
|
+
anymorph geo init --repo . --skills-source /path/to/anymorph-geo-skills/plugins/anymorph-geo/skills
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
This installs managed skills under `.claude/skills` and `.agents/skills`, writes
|
|
146
|
+
`agent/contracts`, creates `agent/runs` and `agent/archive`, and creates missing
|
|
147
|
+
memory files without overwriting existing `agent/BRAND.md`, `agent/STRATEGY.md`,
|
|
148
|
+
or `agent/LEARNINGS.md`.
|
|
149
|
+
|
|
150
|
+
### `anymorph geo sync`
|
|
151
|
+
|
|
152
|
+
Sync managed GEO files without touching memory or run artifacts.
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
anymorph geo sync --repo .
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### `anymorph geo doctor`
|
|
159
|
+
|
|
160
|
+
Check whether the local scaffold still matches the installed skillpack.
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
anymorph geo doctor --repo .
|
|
164
|
+
anymorph geo doctor --repo . --json
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### `anymorph geo intents <runId>`
|
|
168
|
+
|
|
169
|
+
Show the pre-fetched intent list for a local GEO strategy run.
|
|
170
|
+
|
|
171
|
+
```bash
|
|
172
|
+
anymorph geo intents 20260517T074200Z --repo .
|
|
173
|
+
anymorph geo intents 20260517T074200Z --repo . --json
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### `anymorph geo validate <runId>`
|
|
177
|
+
|
|
178
|
+
Validate local GEO run artifacts before pushing `main`.
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
anymorph geo validate 20260517T074200Z --repo .
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
Validation does not update the backend. Backend sync happens from the tenant
|
|
185
|
+
repo GitHub `main` push webhook.
|
|
186
|
+
|
|
102
187
|
## How It Works
|
|
103
188
|
|
|
104
189
|
1. **Login** — OAuth device code flow (like GitHub CLI) creates a secure session
|