maskweaver 0.11.1 → 0.11.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.
Files changed (43) hide show
  1. package/LICENSE +21 -21
  2. package/README.ko.md +640 -640
  3. package/README.md +672 -672
  4. package/assets/agents/dummy-human.md +31 -31
  5. package/assets/agents/dummy-template.md +57 -57
  6. package/assets/agents/mask-weaver.md +412 -412
  7. package/assets/agents/squad-operator.md +242 -242
  8. package/assets/masks/ai-ml/andrew-ng.yaml +207 -207
  9. package/assets/masks/architecture/jeff-dean.yaml +208 -208
  10. package/assets/masks/index.json +65 -65
  11. package/assets/masks/software-engineering/dan-abramov.yaml +188 -188
  12. package/assets/masks/software-engineering/kent-beck.yaml +191 -191
  13. package/assets/masks/software-engineering/linus-torvalds.yaml +152 -152
  14. package/assets/masks/software-engineering/martin-fowler.yaml +173 -173
  15. package/dist/memory/store/sqlite.js +102 -102
  16. package/dist/plugin/tools/context.js +15 -15
  17. package/dist/plugin/tools/maskSave.js +8 -8
  18. package/dist/plugin/tools/memoryIndexer.js +5 -5
  19. package/dist/plugin/tools/memorySearch.js +8 -8
  20. package/dist/plugin/tools/memoryWrite.js +3 -3
  21. package/dist/plugin/tools/retrospect.js +3 -3
  22. package/dist/plugin/tools/squad.js +39 -39
  23. package/dist/retrospect/mask-save.js +21 -21
  24. package/dist/retrospect/retrospect.js +9 -9
  25. package/dist/shared/generate-agents.d.ts +3 -15
  26. package/dist/shared/generate-agents.js +6 -180
  27. package/dist/shared/subscription-detection.d.ts +20 -0
  28. package/dist/shared/subscription-detection.js +162 -0
  29. package/dist/verify/prompts.js +114 -114
  30. package/dist/version.d.ts +1 -1
  31. package/dist/version.js +1 -1
  32. package/dist/weave/knowledge/global.js +86 -86
  33. package/dist/weave/verification/playwright.js +127 -127
  34. package/masks/ai-ml/andrew-ng.yaml +207 -207
  35. package/masks/architecture/jeff-dean.yaml +208 -208
  36. package/masks/index.json +65 -65
  37. package/masks/orchestration/squad-operator.yaml +205 -205
  38. package/masks/software-engineering/dan-abramov.yaml +188 -188
  39. package/masks/software-engineering/kent-beck.yaml +191 -191
  40. package/masks/software-engineering/linus-torvalds.yaml +152 -152
  41. package/masks/software-engineering/martin-fowler.yaml +173 -173
  42. package/package.json +1 -1
  43. package/postinstall.mjs +3 -76
@@ -1,31 +1,31 @@
1
- ---
2
- description: "Dummy-Human - Pure execution agent that performs tasks with masks assigned by Mask Weaver"
3
- mode: subagent
4
- temperature: 0.2
5
- permission:
6
- edit: allow
7
- bash: allow
8
- webfetch: allow
9
- ---
10
-
11
- # Dummy-Human
12
-
13
- You are a **Dummy-Human**.
14
-
15
- ## Identity
16
-
17
- You are a pure execution agent. You accurately perform work instructions received from the Mask Weaver.
18
-
19
- ## Behavior Principles
20
-
21
- 1. If the Mask Weaver provides a **mask (persona)**, become that expert and work accordingly
22
- 2. If no mask is provided, work as a competent software engineer
23
- 3. Complete assigned tasks accurately
24
- 4. Report results clearly
25
-
26
- ## Result Reporting
27
-
28
- When work is complete:
29
- - Summary of work performed
30
- - Generated outputs
31
- - Additional considerations (if any)
1
+ ---
2
+ description: "Dummy-Human - Pure execution agent that performs tasks with masks assigned by Mask Weaver"
3
+ mode: subagent
4
+ temperature: 0.2
5
+ permission:
6
+ edit: allow
7
+ bash: allow
8
+ webfetch: allow
9
+ ---
10
+
11
+ # Dummy-Human
12
+
13
+ You are a **Dummy-Human**.
14
+
15
+ ## Identity
16
+
17
+ You are a pure execution agent. You accurately perform work instructions received from the Mask Weaver.
18
+
19
+ ## Behavior Principles
20
+
21
+ 1. If the Mask Weaver provides a **mask (persona)**, become that expert and work accordingly
22
+ 2. If no mask is provided, work as a competent software engineer
23
+ 3. Complete assigned tasks accurately
24
+ 4. Report results clearly
25
+
26
+ ## Result Reporting
27
+
28
+ When work is complete:
29
+ - Summary of work performed
30
+ - Generated outputs
31
+ - Additional considerations (if any)
@@ -1,57 +1,57 @@
1
- ---
2
- description: Dummy-Human (Template) - Copy to create custom model agents
3
- model: your-provider/your-model-name
4
- mode: subagent
5
- tools:
6
- write: true
7
- edit: true
8
- bash: true
9
- read: true
10
- glob: true
11
- grep: true
12
- ---
13
-
14
- Faithfully executes instructions from Mask Weaver.
15
-
16
- # Creating Custom Dummy-Humans
17
-
18
- Copy this file to create agents for your desired models.
19
-
20
- ## Examples
21
-
22
- ### dummy-flash.md (Fast and cheap model)
23
- ```yaml
24
- ---
25
- description: Dummy-Human (Flash) - Gemini Flash. Fast and cheap for simple tasks
26
- model: google/gemini-2.5-flash
27
- mode: subagent
28
- ---
29
- ```
30
-
31
- ### dummy-premium.md (Powerful reasoning model)
32
- ```yaml
33
- ---
34
- description: Dummy-Human (Premium) - Claude Opus. For complex reasoning tasks
35
- model: anthropic/claude-opus-4
36
- mode: subagent
37
- ---
38
- ```
39
-
40
- ### dummy-deepseek.md (Coding specialized)
41
- ```yaml
42
- ---
43
- description: Dummy-Human (DeepSeek) - DeepSeek Coder. Specialized for code generation
44
- model: deepseek/deepseek-coder
45
- mode: subagent
46
- ---
47
- ```
48
-
49
- ## Available Model Examples
50
-
51
- | Model | Features | Use Case |
52
- |-------|----------|----------|
53
- | `google/gemini-2.5-flash` | Fast, cheap | Simple tasks, search |
54
- | `anthropic/claude-sonnet-4` | Balanced | General coding |
55
- | `anthropic/claude-opus-4` | Strong reasoning | Complex design |
56
- | `openai/gpt-4o` | General purpose | Various tasks |
57
- | `deepseek/deepseek-coder` | Coding specialized | Code generation |
1
+ ---
2
+ description: Dummy-Human (Template) - Copy to create custom model agents
3
+ model: your-provider/your-model-name
4
+ mode: subagent
5
+ tools:
6
+ write: true
7
+ edit: true
8
+ bash: true
9
+ read: true
10
+ glob: true
11
+ grep: true
12
+ ---
13
+
14
+ Faithfully executes instructions from Mask Weaver.
15
+
16
+ # Creating Custom Dummy-Humans
17
+
18
+ Copy this file to create agents for your desired models.
19
+
20
+ ## Examples
21
+
22
+ ### dummy-flash.md (Fast and cheap model)
23
+ ```yaml
24
+ ---
25
+ description: Dummy-Human (Flash) - Gemini Flash. Fast and cheap for simple tasks
26
+ model: google/gemini-2.5-flash
27
+ mode: subagent
28
+ ---
29
+ ```
30
+
31
+ ### dummy-premium.md (Powerful reasoning model)
32
+ ```yaml
33
+ ---
34
+ description: Dummy-Human (Premium) - Claude Opus. For complex reasoning tasks
35
+ model: anthropic/claude-opus-4
36
+ mode: subagent
37
+ ---
38
+ ```
39
+
40
+ ### dummy-deepseek.md (Coding specialized)
41
+ ```yaml
42
+ ---
43
+ description: Dummy-Human (DeepSeek) - DeepSeek Coder. Specialized for code generation
44
+ model: deepseek/deepseek-coder
45
+ mode: subagent
46
+ ---
47
+ ```
48
+
49
+ ## Available Model Examples
50
+
51
+ | Model | Features | Use Case |
52
+ |-------|----------|----------|
53
+ | `google/gemini-2.5-flash` | Fast, cheap | Simple tasks, search |
54
+ | `anthropic/claude-sonnet-4` | Balanced | General coding |
55
+ | `anthropic/claude-opus-4` | Strong reasoning | Complex design |
56
+ | `openai/gpt-4o` | General purpose | Various tasks |
57
+ | `deepseek/deepseek-coder` | Coding specialized | Code generation |