assuremind 1.1.0 → 1.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.
@@ -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
- - `TESTAUTOMIND.md` — quick-reference card
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
 
@@ -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 **`TESTAUTOMIND.md`** — quick-reference card for daily use
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 | `TESTAUTOMIND.md` in your project root |
385
+ | Quick daily reference | `ASSUREMIND.md` in your project root |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assuremind",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "AI-powered codeless UI & API automation framework",
5
5
  "author": "Deepak Hiremath",
6
6
  "license": "MIT",
@@ -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
- ├── TESTAUTOMIND.md ← This file
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`, `TESTAUTOMIND.md`, docs)
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
- ├── TESTAUTOMIND.md ← Quick-reference cheat sheet
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 | `TESTAUTOMIND.md` |
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
 
@@ -1,5 +1,5 @@
1
1
  # ============================================================
2
- # TESTAUTOMIND — Environment Configuration
2
+ # ASSUREMIND — Environment Configuration
3
3
  # ============================================================
4
4
  # Copy this file to .env and configure your AI provider.
5
5
  # You only need ONE provider. Uncomment your chosen section.
@@ -102,7 +102,7 @@ AI_PROVIDER=anthropic
102
102
  # ═══════════════════════════════════════════════
103
103
  # GITHUB — AUTO PR ON SELF-HEALING
104
104
  # ═══════════════════════════════════════════════
105
- # When autoPR is enabled in Settings → Healing, AutoMind creates a PR
105
+ # When autoPR is enabled in Settings → Healing, Assuremind creates a PR
106
106
  # with healed code automatically. Requires a GitHub token with repo scope.
107
107
  # Create a token: https://github.com/settings/tokens/new?scopes=repo
108
108
 
@@ -1,5 +1,5 @@
1
1
  # ============================================================
2
- # AUTOMIND — Environment Configuration
2
+ # ASSUREMIND — Environment Configuration
3
3
  # ============================================================
4
4
  # Uncomment ONE provider block, paste your API key, and save.
5
5
  # ============================================================