maskweaver 0.7.13 → 0.7.16
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/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 +0 -1
- 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/core.d.ts +6 -0
- package/dist/memory/core.d.ts.map +1 -1
- package/dist/memory/core.js +26 -6
- package/dist/memory/core.js.map +1 -1
- package/dist/memory/providers/text-only.d.ts +6 -0
- package/dist/memory/providers/text-only.d.ts.map +1 -1
- package/dist/memory/providers/text-only.js +12 -5
- package/dist/memory/providers/text-only.js.map +1 -1
- package/dist/memory/search/hybrid.d.ts +4 -0
- package/dist/memory/search/hybrid.d.ts.map +1 -1
- package/dist/memory/search/hybrid.js +23 -6
- package/dist/memory/search/hybrid.js.map +1 -1
- package/dist/memory/store/sqlite.d.ts +9 -0
- package/dist/memory/store/sqlite.d.ts.map +1 -1
- package/dist/memory/store/sqlite.js +85 -39
- package/dist/memory/store/sqlite.js.map +1 -1
- 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/memoryWrite.js +3 -3
- package/dist/plugin/tools/retrospect.js +3 -3
- package/dist/plugin/tools/squad.js +2 -2
- package/dist/retrospect/mask-save.js +21 -21
- package/dist/retrospect/retrospect.js +9 -9
- package/dist/verify/prompts.js +114 -114
- package/dist/weave/knowledge/global.d.ts +1 -0
- package/dist/weave/knowledge/global.d.ts.map +1 -1
- package/dist/weave/knowledge/global.js +63 -56
- package/dist/weave/knowledge/global.js.map +1 -1
- 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/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Maskweaver Community
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Maskweaver Community
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -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 |
|