@bugzy-ai/bugzy 1.8.0 → 1.9.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.
Files changed (50) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +273 -273
  3. package/dist/cli/index.cjs +269 -13
  4. package/dist/cli/index.cjs.map +1 -1
  5. package/dist/cli/index.js +268 -12
  6. package/dist/cli/index.js.map +1 -1
  7. package/dist/index.cjs +265 -10
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.js +265 -10
  10. package/dist/index.js.map +1 -1
  11. package/dist/subagents/index.cjs +250 -10
  12. package/dist/subagents/index.cjs.map +1 -1
  13. package/dist/subagents/index.js +250 -10
  14. package/dist/subagents/index.js.map +1 -1
  15. package/dist/subagents/metadata.cjs +9 -0
  16. package/dist/subagents/metadata.cjs.map +1 -1
  17. package/dist/subagents/metadata.js +9 -0
  18. package/dist/subagents/metadata.js.map +1 -1
  19. package/dist/tasks/index.cjs.map +1 -1
  20. package/dist/tasks/index.js.map +1 -1
  21. package/package.json +95 -95
  22. package/templates/init/.bugzy/runtime/knowledge-base.md +61 -61
  23. package/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +97 -97
  24. package/templates/init/.bugzy/runtime/project-context.md +35 -35
  25. package/templates/init/.bugzy/runtime/subagent-memory-guide.md +87 -87
  26. package/templates/init/.bugzy/runtime/templates/test-plan-template.md +50 -50
  27. package/templates/init/.bugzy/runtime/templates/test-result-schema.md +498 -498
  28. package/templates/init/.bugzy/runtime/test-execution-strategy.md +535 -535
  29. package/templates/init/.bugzy/runtime/testing-best-practices.md +724 -724
  30. package/templates/init/.env.testdata +18 -18
  31. package/templates/init/.gitignore-template +24 -24
  32. package/templates/init/AGENTS.md +155 -155
  33. package/templates/init/CLAUDE.md +157 -157
  34. package/templates/init/test-runs/README.md +45 -45
  35. package/templates/playwright/BasePage.template.ts +190 -190
  36. package/templates/playwright/auth.setup.template.ts +89 -89
  37. package/templates/playwright/dataGenerators.helper.template.ts +148 -148
  38. package/templates/playwright/dateUtils.helper.template.ts +96 -96
  39. package/templates/playwright/pages.fixture.template.ts +50 -50
  40. package/templates/playwright/playwright.config.template.ts +97 -97
  41. package/templates/playwright/reporters/bugzy-reporter.ts +454 -454
  42. package/dist/templates/init/.bugzy/runtime/knowledge-base.md +0 -61
  43. package/dist/templates/init/.bugzy/runtime/knowledge-maintenance-guide.md +0 -97
  44. package/dist/templates/init/.bugzy/runtime/project-context.md +0 -35
  45. package/dist/templates/init/.bugzy/runtime/subagent-memory-guide.md +0 -87
  46. package/dist/templates/init/.bugzy/runtime/templates/test-plan-template.md +0 -50
  47. package/dist/templates/init/.bugzy/runtime/templates/test-result-schema.md +0 -498
  48. package/dist/templates/init/.bugzy/runtime/test-execution-strategy.md +0 -535
  49. package/dist/templates/init/.bugzy/runtime/testing-best-practices.md +0 -632
  50. package/dist/templates/init/.gitignore-template +0 -25
@@ -1,87 +1,87 @@
1
- # Sub-Agent Memory: Maintenance Instructions
2
-
3
- ## What This Memory Is
4
-
5
- A focused collection of knowledge relevant to your specific role. This is your working knowledge, not a log of interactions.
6
-
7
- ---
8
-
9
- ## When to ADD
10
-
11
- Add when information:
12
- - Directly impacts your decisions or outputs
13
- - Represents a pattern or learning within your domain
14
- - Prevents repeated mistakes in your area
15
-
16
- **Check first**: Does this overlap with main agent knowledge or another sub-agent's domain?
17
-
18
- ---
19
-
20
- ## When to UPDATE
21
-
22
- Update when:
23
- - Preferences or requirements change within your domain
24
- - Understanding deepens through repeated interactions
25
- - Patterns evolve or are refined
26
- - Multiple related facts can be consolidated
27
-
28
- **Replace** outdated information with current understanding.
29
-
30
- ---
31
-
32
- ## When to REMOVE
33
-
34
- Remove when:
35
- - No longer relevant to current work
36
- - Better handled by main agent's knowledge
37
- - Proven incorrect or outdated
38
- - Never actually used in decision-making
39
-
40
- **Test**: "Has this influenced a decision recently? Will it influence one soon?"
41
-
42
- ---
43
-
44
- ## Core Rules
45
-
46
- 1. **Stay in your domain** - Don't duplicate main agent knowledge
47
- 2. **Operational over historical** - Keep patterns, not logs
48
- 3. **Patterns over instances** - Generalize from specific events
49
- 4. **Actionable over observational** - Every entry must answer "How does this change what I do?"
50
- 5. **Consolidate aggressively** - Aim for 10-30 high-signal entries
51
- 6. **Update as understanding crystallizes** - Refine vague into specific
52
-
53
- ---
54
-
55
- ## Quick Decision Tree
56
-
57
- ```
58
- New information
59
-
60
- ├─ Relevant to my function? No → Ignore or suggest for main agent
61
- │ Yes ↓
62
-
63
- ├─ Actionable (changes what I do)? No → Don't store
64
- │ Yes ↓
65
-
66
- ├─ Duplicates existing? Yes → UPDATE existing entry
67
- │ No ↓
68
-
69
- └─ Belongs in main agent? Yes → Move to main agent
70
- No → ADD to my memory
71
- ```
72
-
73
- ---
74
-
75
- ## Division with Main Agent
76
-
77
- **Main Agent** stores:
78
- - User's overall preferences and background
79
- - Project-wide decisions
80
- - Cross-cutting concerns
81
-
82
- **You (Sub-Agent)** store:
83
- - Domain-specific preferences and patterns
84
- - Tactical learnings within your scope
85
- - Working knowledge for your specific tasks
86
-
87
- **When in doubt**: If multiple sub-agents could use it → Main agent
1
+ # Sub-Agent Memory: Maintenance Instructions
2
+
3
+ ## What This Memory Is
4
+
5
+ A focused collection of knowledge relevant to your specific role. This is your working knowledge, not a log of interactions.
6
+
7
+ ---
8
+
9
+ ## When to ADD
10
+
11
+ Add when information:
12
+ - Directly impacts your decisions or outputs
13
+ - Represents a pattern or learning within your domain
14
+ - Prevents repeated mistakes in your area
15
+
16
+ **Check first**: Does this overlap with main agent knowledge or another sub-agent's domain?
17
+
18
+ ---
19
+
20
+ ## When to UPDATE
21
+
22
+ Update when:
23
+ - Preferences or requirements change within your domain
24
+ - Understanding deepens through repeated interactions
25
+ - Patterns evolve or are refined
26
+ - Multiple related facts can be consolidated
27
+
28
+ **Replace** outdated information with current understanding.
29
+
30
+ ---
31
+
32
+ ## When to REMOVE
33
+
34
+ Remove when:
35
+ - No longer relevant to current work
36
+ - Better handled by main agent's knowledge
37
+ - Proven incorrect or outdated
38
+ - Never actually used in decision-making
39
+
40
+ **Test**: "Has this influenced a decision recently? Will it influence one soon?"
41
+
42
+ ---
43
+
44
+ ## Core Rules
45
+
46
+ 1. **Stay in your domain** - Don't duplicate main agent knowledge
47
+ 2. **Operational over historical** - Keep patterns, not logs
48
+ 3. **Patterns over instances** - Generalize from specific events
49
+ 4. **Actionable over observational** - Every entry must answer "How does this change what I do?"
50
+ 5. **Consolidate aggressively** - Aim for 10-30 high-signal entries
51
+ 6. **Update as understanding crystallizes** - Refine vague into specific
52
+
53
+ ---
54
+
55
+ ## Quick Decision Tree
56
+
57
+ ```
58
+ New information
59
+
60
+ ├─ Relevant to my function? No → Ignore or suggest for main agent
61
+ │ Yes ↓
62
+
63
+ ├─ Actionable (changes what I do)? No → Don't store
64
+ │ Yes ↓
65
+
66
+ ├─ Duplicates existing? Yes → UPDATE existing entry
67
+ │ No ↓
68
+
69
+ └─ Belongs in main agent? Yes → Move to main agent
70
+ No → ADD to my memory
71
+ ```
72
+
73
+ ---
74
+
75
+ ## Division with Main Agent
76
+
77
+ **Main Agent** stores:
78
+ - User's overall preferences and background
79
+ - Project-wide decisions
80
+ - Cross-cutting concerns
81
+
82
+ **You (Sub-Agent)** store:
83
+ - Domain-specific preferences and patterns
84
+ - Tactical learnings within your scope
85
+ - Working knowledge for your specific tasks
86
+
87
+ **When in doubt**: If multiple sub-agents could use it → Main agent
@@ -1,50 +1,50 @@
1
- ---
2
- version: 1.0.0
3
- created_at: [DATE]
4
- updated_at: [DATE]
5
- status: draft
6
- ---
7
-
8
- # Test Plan: [PROJECT_NAME]
9
-
10
- ## Overview
11
-
12
- [2-3 sentences describing what the application does and the testing focus]
13
-
14
- ## Features to Test
15
-
16
- ### [Feature Area 1]
17
- - [ ] Feature 1.1 - Brief description
18
- - [ ] Feature 1.2 - Brief description
19
-
20
- ### [Feature Area 2]
21
- - [ ] Feature 2.1 - Brief description
22
- - [ ] Feature 2.2 - Brief description
23
-
24
- ### [Feature Area 3]
25
- - [ ] Feature 3.1 - Brief description
26
-
27
- ## Out of Scope
28
-
29
- - Item 1 - Reason (e.g., requires native mobile app)
30
- - Item 2 - Reason (e.g., backend-only, no UI)
31
-
32
- ## Test Environment
33
-
34
- - **URL**: TEST_BASE_URL
35
- - **User Credentials**: TEST_USER_EMAIL / TEST_USER_PASSWORD
36
- - **Admin Credentials**: TEST_ADMIN_EMAIL / TEST_ADMIN_PASSWORD (if applicable)
37
-
38
- ## Automation Priority
39
-
40
- | Priority | Criteria |
41
- |----------|----------|
42
- | High | Critical user flows, smoke tests, frequent regression areas |
43
- | Medium | Important features, moderate user impact |
44
- | Low | Edge cases, rarely used features |
45
-
46
- ## Notes
47
-
48
- - See `./exploration-reports/` for detailed UI element discovery
49
- - See `.bugzy/runtime/knowledge-base.md` for technical patterns
50
- - See `.bugzy/runtime/project-context.md` for SDLC and team info
1
+ ---
2
+ version: 1.0.0
3
+ created_at: [DATE]
4
+ updated_at: [DATE]
5
+ status: draft
6
+ ---
7
+
8
+ # Test Plan: [PROJECT_NAME]
9
+
10
+ ## Overview
11
+
12
+ [2-3 sentences describing what the application does and the testing focus]
13
+
14
+ ## Features to Test
15
+
16
+ ### [Feature Area 1]
17
+ - [ ] Feature 1.1 - Brief description
18
+ - [ ] Feature 1.2 - Brief description
19
+
20
+ ### [Feature Area 2]
21
+ - [ ] Feature 2.1 - Brief description
22
+ - [ ] Feature 2.2 - Brief description
23
+
24
+ ### [Feature Area 3]
25
+ - [ ] Feature 3.1 - Brief description
26
+
27
+ ## Out of Scope
28
+
29
+ - Item 1 - Reason (e.g., requires native mobile app)
30
+ - Item 2 - Reason (e.g., backend-only, no UI)
31
+
32
+ ## Test Environment
33
+
34
+ - **URL**: TEST_BASE_URL
35
+ - **User Credentials**: TEST_USER_EMAIL / TEST_USER_PASSWORD
36
+ - **Admin Credentials**: TEST_ADMIN_EMAIL / TEST_ADMIN_PASSWORD (if applicable)
37
+
38
+ ## Automation Priority
39
+
40
+ | Priority | Criteria |
41
+ |----------|----------|
42
+ | High | Critical user flows, smoke tests, frequent regression areas |
43
+ | Medium | Important features, moderate user impact |
44
+ | Low | Edge cases, rarely used features |
45
+
46
+ ## Notes
47
+
48
+ - See `./exploration-reports/` for detailed UI element discovery
49
+ - See `.bugzy/runtime/knowledge-base.md` for technical patterns
50
+ - See `.bugzy/runtime/project-context.md` for SDLC and team info