@olives/devos 2.1.0 → 4.0.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/.agents/AGENTS.md +59 -0
- package/.agents/agents/dba.md +1 -0
- package/.agents/agents/developer.md +1 -0
- package/.agents/agents/eval-engineer.md +26 -0
- package/.agents/agents/executive-proxy.md +60 -0
- package/.agents/agents/orchestrator.md +30 -5
- package/.agents/agents/qa.md +9 -4
- package/.agents/agents/release-manager.md +5 -0
- package/.agents/agents/telemetry.md +36 -0
- package/.agents/agents/tester.md +3 -0
- package/.agents/agents/ui-designer.md +46 -0
- package/.agents/commands/auto.md +18 -0
- package/.agents/commands/design.md +15 -0
- package/.agents/commands/humanize.md +19 -0
- package/.agents/commands/task.md +16 -0
- package/.agents/commands/telemetry.md +14 -0
- package/.agents/hooks/pre-tool-use.sh +93 -0
- package/.agents/hooks/session-end.sh +28 -0
- package/.agents/hooks/session-start.sh +30 -0
- package/.agents/manifest.json +20 -0
- package/.agents/memory/context.json +7 -0
- package/.agents/memory/decisions/ADR-000-template.md +34 -0
- package/.agents/memory/handoffs/handoff-template.md +27 -0
- package/.agents/packs.json +118 -0
- package/.agents/scripts/humanize-check.sh +86 -0
- package/.agents/skills/autonomous-sdlc/SKILL.md +102 -0
- package/.agents/skills/humanizer/SKILL.md +135 -0
- package/.agents/skills/shared-memory/SKILL.md +38 -0
- package/.agents/skills/task-board/SKILL.md +26 -0
- package/.agents/skills/telemetry/SKILL.md +81 -0
- package/.agents/skills/testing-guide/SKILL.md +105 -0
- package/.agents/telemetry/.gitkeep +0 -0
- package/VERSION +1 -1
- package/bin/devos.js +1048 -74
- package/docs/2026-09-03-devos-ecc-gap-analysis.md +187 -0
- package/docs/2026-09-12-devos-v4-roadmap-research.md +314 -0
- package/docs/ARCHITECTURE.md +88 -6
- package/docs/CHANGELOG.md +13 -0
- package/docs/CURRENT_STATE.md +29 -23
- package/docs/PLAN_RUNTIME_HARNESS_PACKS.md +71 -0
- package/docs/SLASH_COMMANDS.md +35 -0
- package/docs/TASK_BOARD.md +50 -0
- package/docs/TUTORIAL.md +1 -1
- package/package.json +4 -1
- package/scripts/smoke-test.js +103 -0
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: testing-guide
|
|
3
|
+
description: |
|
|
4
|
+
Protocol for authoring comprehensive, step-by-step interactive testing guides in docs/TESTING_GUIDE.md.
|
|
5
|
+
Ensures human testers, non-technical startup founders, and QA reviewers have complete walkthroughs,
|
|
6
|
+
functional test scenarios, realistic seed data, and standard dev test accounts with universal passwords (devos123).
|
|
7
|
+
license: MIT
|
|
8
|
+
metadata:
|
|
9
|
+
version: "1.0.0"
|
|
10
|
+
target_file: "docs/TESTING_GUIDE.md"
|
|
11
|
+
universal_password: "devos123"
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# Interactive Testing Guide Protocol
|
|
15
|
+
|
|
16
|
+
Whenever delivering an MVP, a feature set, or concluding autonomous development mode (`auto` / `devos run`), the Tester and QA agents MUST author or update:
|
|
17
|
+
|
|
18
|
+
**`docs/TESTING_GUIDE.md`**
|
|
19
|
+
|
|
20
|
+
This document serves as the single source of truth for non-technical startup founders, product managers, and human QA testers to test every feature end-to-end without guessing.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 1. Core Principles
|
|
25
|
+
|
|
26
|
+
1. **Zero Guesswork:** Every screen, button, input field, and expected output must be documented with explicit click-by-click instructions.
|
|
27
|
+
2. **Universal Test Passwords (`devos123`):**
|
|
28
|
+
- In all local environments, seed fixtures, mock accounts, and test scenarios, the password for ALL test users is strictly:
|
|
29
|
+
```
|
|
30
|
+
devos123
|
|
31
|
+
```
|
|
32
|
+
- This eliminates authentication friction for human testers and prevents forgotten credential blockers.
|
|
33
|
+
3. **Realistic Seed Data:** Document the exact sample entities available in the database (e.g. users, items, transactions, orders) so testers know which records exist.
|
|
34
|
+
4. **Interactive Checkboxes:** Format testing flows as interactive Markdown checklists (`- [ ]`) so human testers can track their progress directly.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## 2. Standard Test User Personas
|
|
39
|
+
|
|
40
|
+
Every application with authentication must provide seed accounts matching these standard personas:
|
|
41
|
+
|
|
42
|
+
| Role | Email / Username | Password | Purpose |
|
|
43
|
+
|---|---|---|---|
|
|
44
|
+
| **Admin User** | `admin@example.com` | `devos123` | Testing administration, user management, and privileged controls |
|
|
45
|
+
| **Standard User** | `user@example.com` | `devos123` | Testing normal day-to-day user flows and CRUD operations |
|
|
46
|
+
| **Secondary User** | `member@example.com` | `devos123` | Testing multi-user interactions, sharing, comments, and permissions |
|
|
47
|
+
| **Restricted / Unverified** | `guest@example.com` | `devos123` | Testing access boundaries, paywalls, and unverified state restrictions |
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## 3. Structure of `docs/TESTING_GUIDE.md`
|
|
52
|
+
|
|
53
|
+
Every `docs/TESTING_GUIDE.md` must follow this structure:
|
|
54
|
+
|
|
55
|
+
```markdown
|
|
56
|
+
# Application Testing & QA Guide
|
|
57
|
+
|
|
58
|
+
**Application:** [Project Name]
|
|
59
|
+
**Environment:** Local Development (`http://localhost:3000` or local port)
|
|
60
|
+
**Target Audience:** Human QA Testers, Product Owners, Startup Founders
|
|
61
|
+
**Default Credentials Password:** `devos123` (Universal across all seed accounts)
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## 1. Quick Start & Prerequisites
|
|
66
|
+
- Commands to start backend and frontend services (e.g. `npm run dev`)
|
|
67
|
+
- Command to seed the database (e.g. `npm run seed` or `db:seed`)
|
|
68
|
+
- Local URL to open in browser
|
|
69
|
+
|
|
70
|
+
## 2. Seed Data Fixtures
|
|
71
|
+
- Summary of pre-populated records available for testing
|
|
72
|
+
- IDs, names, and attributes of sample data
|
|
73
|
+
|
|
74
|
+
## 3. Test Scenarios (Step-by-Step Walkthroughs)
|
|
75
|
+
|
|
76
|
+
### Scenario A: Authentication & Role Verification
|
|
77
|
+
- [ ] 1. Navigate to `/login`.
|
|
78
|
+
- [ ] 2. Enter `user@example.com` and password `devos123`. Click "Sign In".
|
|
79
|
+
- [ ] 3. Verify redirection to `/dashboard` and that user profile displays "Standard User".
|
|
80
|
+
- [ ] 4. Log out. Log in as `admin@example.com` (`devos123`) and verify access to `/admin`.
|
|
81
|
+
|
|
82
|
+
### Scenario B: Core Feature Flow
|
|
83
|
+
- [ ] 1. Action step 1...
|
|
84
|
+
- [ ] 2. Action step 2...
|
|
85
|
+
- [ ] 3. Expected visual result / state change...
|
|
86
|
+
|
|
87
|
+
### Scenario C: Edge Cases & Boundary Handling
|
|
88
|
+
- [ ] 1. Empty input validation...
|
|
89
|
+
- [ ] 2. Duplicate submission error message...
|
|
90
|
+
- [ ] 3. Permission denial when accessing restricted endpoints...
|
|
91
|
+
|
|
92
|
+
## 4. Known Limitations & Notes
|
|
93
|
+
- List any mock third-party integrations (e.g. Stripe test mode, email trap)
|
|
94
|
+
- Non-blocking known UI details
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## 4. Generation & Verification Checklist
|
|
100
|
+
|
|
101
|
+
Before marking any delivery complete:
|
|
102
|
+
- [ ] `docs/TESTING_GUIDE.md` exists and is linked in `docs/CURRENT_STATE.md`.
|
|
103
|
+
- [ ] All test accounts listed use the password `devos123`.
|
|
104
|
+
- [ ] All links and paths are valid and tested.
|
|
105
|
+
- [ ] The document has passed the Humanizer check (`.agents/scripts/humanize-check.sh`).
|
|
File without changes
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4.0.0
|