maskweaver 0.11.0 → 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.
- package/LICENSE +21 -21
- package/README.ko.md +640 -640
- package/README.md +672 -672
- package/assets/agents/dummy-human.md +31 -31
- package/assets/agents/dummy-template.md +57 -57
- package/assets/agents/mask-weaver.md +412 -412
- package/assets/agents/squad-operator.md +242 -242
- package/assets/masks/ai-ml/andrew-ng.yaml +207 -207
- package/assets/masks/architecture/jeff-dean.yaml +208 -208
- package/assets/masks/index.json +65 -65
- package/assets/masks/software-engineering/dan-abramov.yaml +188 -188
- package/assets/masks/software-engineering/kent-beck.yaml +191 -191
- package/assets/masks/software-engineering/linus-torvalds.yaml +152 -152
- package/assets/masks/software-engineering/martin-fowler.yaml +173 -173
- package/dist/memory/store/sqlite.js +102 -102
- package/dist/plugin/tools/context.js +15 -15
- package/dist/plugin/tools/maskSave.js +8 -8
- package/dist/plugin/tools/memoryIndexer.js +5 -5
- package/dist/plugin/tools/memorySearch.js +8 -8
- package/dist/plugin/tools/memoryWrite.js +3 -3
- package/dist/plugin/tools/retrospect.js +3 -3
- package/dist/plugin/tools/squad.js +39 -39
- package/dist/retrospect/mask-save.js +21 -21
- package/dist/retrospect/retrospect.js +9 -9
- package/dist/shared/generate-agents.d.ts +3 -15
- package/dist/shared/generate-agents.js +13 -172
- package/dist/shared/subscription-detection.d.ts +20 -0
- package/dist/shared/subscription-detection.js +162 -0
- package/dist/verify/prompts.js +114 -114
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/weave/knowledge/global.js +86 -86
- package/dist/weave/verification/playwright.js +127 -127
- package/masks/ai-ml/andrew-ng.yaml +207 -207
- package/masks/architecture/jeff-dean.yaml +208 -208
- package/masks/index.json +65 -65
- package/masks/orchestration/squad-operator.yaml +205 -205
- package/masks/software-engineering/dan-abramov.yaml +188 -188
- package/masks/software-engineering/kent-beck.yaml +191 -191
- package/masks/software-engineering/linus-torvalds.yaml +152 -152
- package/masks/software-engineering/martin-fowler.yaml +173 -173
- package/package.json +1 -1
- package/postinstall.mjs +22 -112
|
@@ -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 |
|