assuremind 1.1.0 → 1.1.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/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/docs/CLI-REFERENCE.md +1 -1
- package/docs/GETTING-STARTED.md +2 -2
- package/package.json +1 -1
- package/templates/ASSUREMIND.md +1 -1
- package/templates/docs/CLI-REFERENCE.md +1 -1
- package/templates/docs/GETTING-STARTED.md +2 -2
package/docs/CLI-REFERENCE.md
CHANGED
|
@@ -35,7 +35,7 @@ npx assuremind init [options]
|
|
|
35
35
|
- `.gitignore` — ignores `.env`, `node_modules`, `results/`
|
|
36
36
|
- `autotest.config.ts` — framework configuration
|
|
37
37
|
- `variables/global.json` — empty variable store
|
|
38
|
-
- `
|
|
38
|
+
- `ASSUREMIND.md` — quick-reference card
|
|
39
39
|
- Installs Playwright browsers unless `--skip-playwright` is given
|
|
40
40
|
- Runs `npx playwright install` for chromium, firefox, webkit
|
|
41
41
|
|
package/docs/GETTING-STARTED.md
CHANGED
|
@@ -44,7 +44,7 @@ This command:
|
|
|
44
44
|
- Copies **`.env.example`** — full reference of all supported environment variables
|
|
45
45
|
- Creates **`.env`** — minimal template for you to fill in
|
|
46
46
|
- Creates **`autotest.config.ts`** — framework configuration
|
|
47
|
-
- Creates **`
|
|
47
|
+
- Creates **`ASSUREMIND.md`** — quick-reference card for daily use
|
|
48
48
|
- Installs Playwright browsers (`chromium`, `firefox`, `webkit`)
|
|
49
49
|
|
|
50
50
|
If you want to skip the Playwright browser download (e.g., in CI where you install them separately):
|
|
@@ -382,4 +382,4 @@ Or manage variables in the Studio → **Variables** page.
|
|
|
382
382
|
| Config options | `autotest.config.ts` comments |
|
|
383
383
|
| MCP integration | Settings page → MCP Integration |
|
|
384
384
|
| All supported AI providers | `.env.example` |
|
|
385
|
-
| Quick daily reference | `
|
|
385
|
+
| Quick daily reference | `ASSUREMIND.md` in your project root |
|
package/package.json
CHANGED
package/templates/ASSUREMIND.md
CHANGED
|
@@ -67,7 +67,7 @@ npx assuremind doctor
|
|
|
67
67
|
├── .env ← AI provider credentials (never commit)
|
|
68
68
|
├── .env.example ← Provider reference (safe to commit)
|
|
69
69
|
├── autotest.config.ts ← Framework configuration
|
|
70
|
-
├──
|
|
70
|
+
├── ASSUREMIND.md ← This file
|
|
71
71
|
│
|
|
72
72
|
├── tests/
|
|
73
73
|
│ ├── <suite-slug>/ ← UI and API suites
|
|
@@ -32,7 +32,7 @@ npx assuremind init [options]
|
|
|
32
32
|
|
|
33
33
|
**What it does:**
|
|
34
34
|
- Creates the directory structure (`tests/`, `variables/`, `results/`, `fixtures/`, `docs/`)
|
|
35
|
-
- Copies starter files (`.env`, `autotest.config.ts`, `
|
|
35
|
+
- Copies starter files (`.env`, `autotest.config.ts`, `ASSUREMIND.md`, docs)
|
|
36
36
|
- Writes `autotest.config.json` with defaults
|
|
37
37
|
- Installs Playwright browsers (Chromium, Firefox, WebKit)
|
|
38
38
|
|
|
@@ -75,7 +75,7 @@ my-project/
|
|
|
75
75
|
├── .env.example ← Provider reference
|
|
76
76
|
├── autotest.config.ts ← Framework configuration
|
|
77
77
|
├── autotest.config.json ← Runtime config (auto-synced)
|
|
78
|
-
├──
|
|
78
|
+
├── ASSUREMIND.md ← Quick-reference cheat sheet
|
|
79
79
|
├── docs/
|
|
80
80
|
│ ├── GETTING-STARTED.md ← This file
|
|
81
81
|
│ ├── STUDIO.md ← Full UI walkthrough
|
|
@@ -416,7 +416,7 @@ HEALING_ENABLED=false
|
|
|
416
416
|
|-------|----------|
|
|
417
417
|
| Full Studio UI walkthrough | `docs/STUDIO.md` |
|
|
418
418
|
| All CLI commands | `docs/CLI-REFERENCE.md` |
|
|
419
|
-
| Quick-reference cheat sheet | `
|
|
419
|
+
| Quick-reference cheat sheet | `ASSUREMIND.md` |
|
|
420
420
|
| All AI provider options | `.env.example` |
|
|
421
421
|
| MCP integration | Settings page → MCP Integration |
|
|
422
422
|
|