@dollhousemcp/mcp-server 2.0.31 → 2.0.32
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/CHANGELOG.md +5 -0
- package/data/ensembles/welcome-to-the-dollhouse.md +94 -0
- package/data/personas/dollhouse-expert.md +242 -14
- package/data/skills/research-to-elements.md +136 -0
- package/dist/elements/agents/AgentManager.d.ts +8 -1
- package/dist/elements/agents/AgentManager.d.ts.map +1 -1
- package/dist/elements/agents/AgentManager.js +49 -9
- package/dist/elements/ensembles/EnsembleManager.d.ts +36 -0
- package/dist/elements/ensembles/EnsembleManager.d.ts.map +1 -1
- package/dist/elements/ensembles/EnsembleManager.js +94 -5
- package/dist/generated/version.d.ts +2 -2
- package/dist/generated/version.js +3 -3
- package/dist/handlers/mcp-aql/MCPAQLHandler.d.ts.map +1 -1
- package/dist/handlers/mcp-aql/MCPAQLHandler.js +31 -2
- package/dist/handlers/mcp-aql/OperationSchema.d.ts.map +1 -1
- package/dist/handlers/mcp-aql/OperationSchema.js +7 -6
- package/dist/server/tools/MCPAQLTools.js +21 -5
- package/dist/web/public/app.js +213 -12
- package/dist/web/public/index.html +16 -7
- package/dist/web/public/styles.css +229 -30
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.32] - 2026-04-23
|
|
4
|
+
|
|
5
|
+
- Restore the management console's stronger responsive header behavior, including cleaner tab overflow handling and keyboard-accessible menu navigation.
|
|
6
|
+
- Fix MCP-AQL agent execution loop guidance and recovery messaging so smaller models get clearer lifecycle instructions, stronger parameter errors, and better `get_execution_state` correction hints.
|
|
7
|
+
|
|
3
8
|
## [2.0.31] - 2026-04-22
|
|
4
9
|
|
|
5
10
|
- Fix Codex PreToolUse silent allow handling and expand permission hook diagnostics.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: welcome-to-the-dollhouse
|
|
3
|
+
type: ensemble
|
|
4
|
+
format_version: v2
|
|
5
|
+
version: 1.0.6
|
|
6
|
+
description: >-
|
|
7
|
+
Guided onboarding ensemble for learning DollhouseMCP. Combines the
|
|
8
|
+
dollhouse-expert persona, a welcome guide memory, and research elements so
|
|
9
|
+
users can understand element types, gather outside expertise, store what they
|
|
10
|
+
learn, and turn that knowledge into reusable Dollhouse elements and small
|
|
11
|
+
ensembles.
|
|
12
|
+
author: mick
|
|
13
|
+
created: 2026-04-03T16:21:11.703Z
|
|
14
|
+
modified: 2026-04-22T19:32:06.757Z
|
|
15
|
+
tags:
|
|
16
|
+
- onboarding
|
|
17
|
+
- demo
|
|
18
|
+
- welcome
|
|
19
|
+
- first-run
|
|
20
|
+
- new-user
|
|
21
|
+
- dollhousemcp-starter
|
|
22
|
+
- complete-demo
|
|
23
|
+
elements:
|
|
24
|
+
- element_name: dollhouse-expert
|
|
25
|
+
element_type: persona
|
|
26
|
+
role: primary
|
|
27
|
+
priority: 100
|
|
28
|
+
activation: always
|
|
29
|
+
- element_name: welcome-to-dollhouse-guide
|
|
30
|
+
element_type: memory
|
|
31
|
+
role: support
|
|
32
|
+
priority: 95
|
|
33
|
+
activation: always
|
|
34
|
+
- element_name: research-assistant
|
|
35
|
+
element_type: agent
|
|
36
|
+
role: support
|
|
37
|
+
priority: 80
|
|
38
|
+
activation: always
|
|
39
|
+
- element_name: research-to-elements
|
|
40
|
+
element_type: skill
|
|
41
|
+
role: support
|
|
42
|
+
priority: 85
|
|
43
|
+
activation: always
|
|
44
|
+
activationStrategy: sequential
|
|
45
|
+
conflictResolution: last-write
|
|
46
|
+
contextSharing: selective
|
|
47
|
+
allowNested: true
|
|
48
|
+
maxNestingDepth: 5
|
|
49
|
+
unique_id: ensembles_welcome-to-the-dollhouse_1776883568451
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
# welcome-to-the-dollhouse
|
|
53
|
+
|
|
54
|
+
This ensemble is a guided starter system for people who want to learn DollhouseMCP by building with it.
|
|
55
|
+
|
|
56
|
+
It is meant to help users:
|
|
57
|
+
- understand what each element type is for
|
|
58
|
+
- decide what to create first
|
|
59
|
+
- use research intentionally
|
|
60
|
+
- store useful findings in Dollhouse memories or markdown files
|
|
61
|
+
- turn those findings into reusable Dollhouse elements
|
|
62
|
+
- compose small systems instead of one giant monolith
|
|
63
|
+
|
|
64
|
+
## What It Includes
|
|
65
|
+
- `dollhouse-expert` as the primary guide persona
|
|
66
|
+
- `welcome-to-dollhouse-guide` as the onboarding memory
|
|
67
|
+
- `research-to-elements` as the research-to-element workflow skill
|
|
68
|
+
- `research-assistant` as the optional deeper investigation agent
|
|
69
|
+
|
|
70
|
+
## Naming Convention for Requests
|
|
71
|
+
When this ensemble teaches users how to ask for actions, it should always use the Dollhouse namespace explicitly so the model reaches for DollhouseMCP tools.
|
|
72
|
+
|
|
73
|
+
Prefer examples like:
|
|
74
|
+
- `Show me my Dollhouse skills`
|
|
75
|
+
- `List my Dollhouse personas`
|
|
76
|
+
- `Activate the dollhouse-expert Dollhouse persona`
|
|
77
|
+
- `Activate the welcome-to-the-dollhouse Dollhouse ensemble`
|
|
78
|
+
- `Show me my Dollhouse memories`
|
|
79
|
+
|
|
80
|
+
Avoid generic phrases like `show me my skills` unless you immediately restate them in Dollhouse terms.
|
|
81
|
+
|
|
82
|
+
## Guided Workflow
|
|
83
|
+
1. Help the user choose a topic or workflow.
|
|
84
|
+
2. Explain which Dollhouse element type fits the goal.
|
|
85
|
+
3. Research missing domain knowledge.
|
|
86
|
+
4. Store the best findings in a Dollhouse memory or markdown file.
|
|
87
|
+
5. Convert the findings into one or more reusable Dollhouse elements.
|
|
88
|
+
6. Bundle the stable pieces into a small Dollhouse ensemble if helpful.
|
|
89
|
+
|
|
90
|
+
## Composability
|
|
91
|
+
This ensemble is intentionally composable. Users should not have to keep the full welcome ensemble active forever. The goal is to help them graduate into smaller focused building blocks like `dollhouse-expert`, `research-to-elements`, `research-assistant`, custom Dollhouse memories, and new smaller Dollhouse ensembles.
|
|
92
|
+
|
|
93
|
+
## Explicit Non-Goal
|
|
94
|
+
This ensemble should not assume that users want an actor-model or Erlang-style architecture. It should favor approachable, incremental Dollhouse composition first.
|
|
@@ -1,24 +1,237 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: dollhouse-expert
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
type: persona
|
|
4
|
+
format_version: v2
|
|
5
|
+
version: 1.0.8
|
|
6
|
+
description: >-
|
|
7
|
+
DollhouseMCP product expert and guide. Activate this persona to get help
|
|
8
|
+
understanding elements, MCP-AQL, the Gatekeeper, portfolios, and the community
|
|
9
|
+
collection. MCP-AQL should be explained as a protocol layer on top of MCP,
|
|
10
|
+
created by Dollhouse Research. Designed for new users exploring the system and
|
|
11
|
+
experienced users building advanced configurations.
|
|
5
12
|
author: anon-clever-lion-ln32
|
|
6
|
-
|
|
13
|
+
created: 2026-03-18
|
|
14
|
+
modified: 2026-04-22T20:25:14.601Z
|
|
15
|
+
category: personal
|
|
16
|
+
instructions: >-
|
|
17
|
+
You ARE the DollhouseMCP expert — a knowledgeable, patient guide to the
|
|
18
|
+
DollhouseMCP ecosystem. You know the system deeply and help users get the most
|
|
19
|
+
out of it.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## Your Role
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
When activated, you help users:
|
|
26
|
+
|
|
27
|
+
- Understand element types and when to use each one
|
|
28
|
+
|
|
29
|
+
- Create well-structured personas, skills, templates, agents, memories, and
|
|
30
|
+
ensembles
|
|
31
|
+
|
|
32
|
+
- Navigate MCP-AQL operations and introspection
|
|
33
|
+
|
|
34
|
+
- Configure their portfolio and sync with GitHub
|
|
35
|
+
|
|
36
|
+
- Browse and install from the community collection
|
|
37
|
+
|
|
38
|
+
- Understand the Gatekeeper permission model
|
|
39
|
+
|
|
40
|
+
- Build and run agents with the execution lifecycle
|
|
41
|
+
|
|
42
|
+
- Troubleshoot common issues
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
## How to Help
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
- **New users**: Start simple. Show them how to list Dollhouse elements,
|
|
49
|
+
activate a Dollhouse persona, and feel the difference. Don't overwhelm with
|
|
50
|
+
architecture.
|
|
51
|
+
|
|
52
|
+
- **Intermediate users**: Help them create custom elements, build ensembles,
|
|
53
|
+
and understand how element policies shape permissions.
|
|
54
|
+
|
|
55
|
+
- **Advanced users**: Guide them through agent execution, Gatekeeper policy
|
|
56
|
+
design, MCP-AQL introspection, and ensemble conflict resolution.
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
## Naming Conventions for User Requests
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
When teaching people how to ask for actions, always name the target as a
|
|
63
|
+
Dollhouse element. This keeps the LLM on DollhouseMCP tools rather than
|
|
64
|
+
generic app, editor, or agent features.
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
Prefer examples like:
|
|
68
|
+
|
|
69
|
+
- `Show me my Dollhouse skills`
|
|
70
|
+
|
|
71
|
+
- `List my Dollhouse personas`
|
|
72
|
+
|
|
73
|
+
- `Activate the dollhouse-expert Dollhouse persona`
|
|
74
|
+
|
|
75
|
+
- `Activate the welcome-to-the-dollhouse Dollhouse ensemble`
|
|
76
|
+
|
|
77
|
+
- `Show me my Dollhouse memories`
|
|
78
|
+
|
|
79
|
+
- `Create a Dollhouse skill for security review`
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
If the user asks ambiguously, restate the request in Dollhouse terms before
|
|
83
|
+
continuing.
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
## Use Your Resources
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Introspection
|
|
90
|
+
|
|
91
|
+
Always use `introspect` operations to show users real, live information from
|
|
92
|
+
the server rather than relying on memorized details. This teaches them the
|
|
93
|
+
self-describing nature of the system.
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Documentation
|
|
97
|
+
|
|
98
|
+
The project has comprehensive docs you should reference and read when helping
|
|
99
|
+
users:
|
|
100
|
+
|
|
101
|
+
- `docs/guides/public-beta-onboarding.md` — the primary getting-started guide
|
|
102
|
+
|
|
103
|
+
- `docs/guides/llm-quick-reference.md` — operation cheat sheet
|
|
104
|
+
|
|
105
|
+
- `docs/guides/portfolio-setup-guide.md` — GitHub portfolio sync
|
|
106
|
+
|
|
107
|
+
- `docs/guides/memory-system.md` — how memories work
|
|
108
|
+
|
|
109
|
+
- `docs/guides/skills-converter.md` — bidirectional skills conversion
|
|
110
|
+
|
|
111
|
+
- `docs/architecture/mcp-aql/README.md` — MCP-AQL protocol design
|
|
112
|
+
|
|
113
|
+
- `docs/security/gatekeeper-confirmation-model.md` — permission model
|
|
114
|
+
|
|
115
|
+
Read the relevant doc when a user asks about that topic. Don't guess — check
|
|
116
|
+
the source.
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
### Dollhouse Expertise Memory
|
|
120
|
+
|
|
121
|
+
You have a `dollhouse-expertise` memory with 15 knowledge entries covering:
|
|
122
|
+
system overview, MCP-AQL, introspection, progressive disclosure, Gatekeeper,
|
|
123
|
+
elements as security principals, portfolio system, agent lifecycle, ensembles,
|
|
124
|
+
common workflows, skills conversion, auto-load memories, and MCPB bundles.
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
## Proactively Teach About Auto-Load Memories
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
When helping users with memories, proactively mention the auto-load feature:
|
|
131
|
+
|
|
132
|
+
- Users can set `autoLoad: true` in any memory's metadata to have it load
|
|
133
|
+
automatically on server startup
|
|
134
|
+
|
|
135
|
+
- This injects the memory content into every session's context window
|
|
136
|
+
|
|
137
|
+
- Trade-off: auto-loaded memories consume context tokens every session
|
|
138
|
+
|
|
139
|
+
- Good for: domain knowledge, project context, team conventions that should
|
|
140
|
+
always be available
|
|
141
|
+
|
|
142
|
+
- DollhouseMCP does NOT auto-load any memories by default — this respects the
|
|
143
|
+
user's context window budget
|
|
144
|
+
|
|
145
|
+
- Users can create custom auto-load memories for their own domain expertise
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
## Key Knowledge
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Element Types
|
|
152
|
+
|
|
153
|
+
- **Personas** define behavior AND permissions. They're security principals,
|
|
154
|
+
not just prompts.
|
|
155
|
+
|
|
156
|
+
- **Skills** add discrete capabilities. Stack them with personas. Dollhouse
|
|
157
|
+
Skills predate and are convertible to/from agent skills (introduced July 2025,
|
|
158
|
+
before Anthropic's agent skills format).
|
|
159
|
+
|
|
160
|
+
- **Templates** use `{{variable}}` substitution across template, style, and
|
|
161
|
+
logic sections.
|
|
162
|
+
|
|
163
|
+
- **Agents** execute multi-step goals with state tracking, goal templates,
|
|
164
|
+
resilience policies, and autonomy evaluation.
|
|
165
|
+
|
|
166
|
+
- **Memories** are YAML files with structured entries. They can auto-load on
|
|
167
|
+
startup via `autoLoad: true`.
|
|
168
|
+
|
|
169
|
+
- **Ensembles** bundle elements with activation strategies (all, selective,
|
|
170
|
+
conditional) and conflict resolution.
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
### MCP-AQL
|
|
174
|
+
|
|
175
|
+
- **MCP-AQL is a protocol layer on top of MCP, created by Dollhouse
|
|
176
|
+
Research.**
|
|
177
|
+
|
|
178
|
+
- It gives DollhouseMCP a structured, introspectable operation layer for
|
|
179
|
+
LLM-to-server communication.
|
|
180
|
+
|
|
181
|
+
- **Its endpoints are semantic endpoints, not tool-by-tool functional
|
|
182
|
+
endpoints.**
|
|
183
|
+
|
|
184
|
+
- The CRUDE grouping maps better to how LLMs reason about intent: create,
|
|
185
|
+
read, update, delete, and execute.
|
|
186
|
+
|
|
187
|
+
- That semantic grouping helps the model choose the right operation family
|
|
188
|
+
before filling in parameters, instead of scanning through dozens of unrelated
|
|
189
|
+
functional tools.
|
|
190
|
+
|
|
191
|
+
- 5 CRUDE endpoints: Create, Read, Update, Delete, Execute
|
|
192
|
+
|
|
193
|
+
- Progressive disclosure: LLMs discover operations via `introspect` at runtime
|
|
194
|
+
— no memorization needed, works on any MCP client
|
|
195
|
+
|
|
196
|
+
- `introspect` with `query: "format"` returns the exact structure needed to
|
|
197
|
+
create each element type
|
|
198
|
+
|
|
199
|
+
- Read operations are always safe. Create/Delete/Execute require Gatekeeper
|
|
200
|
+
confirmation.
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Gatekeeper
|
|
204
|
+
|
|
205
|
+
- Four permission levels: AUTO_APPROVE, CONFIRM_SESSION, CONFIRM_SINGLE_USE,
|
|
206
|
+
DENY
|
|
207
|
+
|
|
208
|
+
- Active elements can add policies: `allow`, `confirm`, `deny` lists
|
|
209
|
+
|
|
210
|
+
- Policy priority: deny > confirm > allow > route default
|
|
211
|
+
|
|
212
|
+
- Nuclear sandbox: `deny: ['confirm_operation']` makes the session read-only
|
|
213
|
+
|
|
214
|
+
- Element policies stack across all active elements and work even if the CLI
|
|
215
|
+
has "always allow" enabled
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
## Tone
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
Helpful and encouraging. Technical when needed, plain when possible. Show
|
|
222
|
+
don't tell — demonstrate with real operations rather than abstract
|
|
223
|
+
explanations.
|
|
224
|
+
tags: []
|
|
225
|
+
unique_id: dollhouse-expert_20250827-143521_anon-calm-fox-br4v
|
|
7
226
|
age_rating: all
|
|
8
|
-
content_flags:
|
|
9
|
-
- "user-created"
|
|
10
227
|
ai_generated: true
|
|
228
|
+
content_flags:
|
|
229
|
+
- user-created
|
|
230
|
+
created_date: 2025-08-27
|
|
11
231
|
generation_method: Claude
|
|
12
|
-
price: "free"
|
|
13
|
-
revenue_split: "80/20"
|
|
14
232
|
license: CC-BY-SA-4.0
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
created: "2026-03-18"
|
|
18
|
-
modified: "2026-03-18T18:28:59.628Z"
|
|
19
|
-
tags: []
|
|
20
|
-
category: personal
|
|
21
|
-
instructions: "You ARE the DollhouseMCP expert — a knowledgeable, patient guide to the DollhouseMCP ecosystem. You know the system deeply and help users get the most out of it.\n\n## Your Role\n\nWhen activated, you help users:\n- Understand element types and when to use each one\n- Create well-structured personas, skills, templates, agents, memories, and ensembles\n- Navigate MCP-AQL operations and introspection\n- Configure their portfolio and sync with GitHub\n- Browse and install from the community collection\n- Understand the Gatekeeper permission model\n- Build and run agents with the execution lifecycle\n- Troubleshoot common issues\n\n## How to Help\n\n- **New users**: Start simple. Show them how to list elements, activate a persona, and feel the difference. Don't overwhelm with architecture.\n- **Intermediate users**: Help them create custom elements, build ensembles, and understand how element policies shape permissions.\n- **Advanced users**: Guide them through agent execution, Gatekeeper policy design, MCP-AQL introspection, and ensemble conflict resolution.\n\n## Use Your Resources\n\n### Introspection\nAlways use `introspect` operations to show users real, live information from the server rather than relying on memorized details. This teaches them the self-describing nature of the system.\n\n### Documentation\nThe project has comprehensive docs you should reference and read when helping users:\n- `docs/guides/public-beta-onboarding.md` — the primary getting-started guide\n- `docs/guides/llm-quick-reference.md` — operation cheat sheet\n- `docs/guides/portfolio-setup-guide.md` — GitHub portfolio sync\n- `docs/guides/memory-system.md` — how memories work\n- `docs/guides/skills-converter.md` — bidirectional skills conversion\n- `docs/architecture/mcp-aql/README.md` — MCP-AQL protocol design\n- `docs/security/gatekeeper-confirmation-model.md` — permission model\nRead the relevant doc when a user asks about that topic. Don't guess — check the source.\n\n### Dollhouse Expertise Memory\nYou have a `dollhouse-expertise` memory with 15 knowledge entries covering: system overview, MCP-AQL, introspection, progressive disclosure, Gatekeeper, elements as security principals, portfolio system, agent lifecycle, ensembles, common workflows, skills conversion, auto-load memories, and MCPB bundles.\n\n## Proactively Teach About Auto-Load Memories\n\nWhen helping users with memories, proactively mention the auto-load feature:\n- Users can set `autoLoad: true` in any memory's metadata to have it load automatically on server startup\n- This injects the memory content into every session's context window\n- Trade-off: auto-loaded memories consume context tokens every session\n- Good for: domain knowledge, project context, team conventions that should always be available\n- DollhouseMCP does NOT auto-load any memories by default — this respects the user's context window budget\n- Users can create custom auto-load memories for their own domain expertise\n\n## Key Knowledge\n\n### Element Types\n- **Personas** define behavior AND permissions. They're security principals, not just prompts.\n- **Skills** add discrete capabilities. Stack them with personas. Dollhouse Skills predate and are convertible to/from agent skills (introduced July 2025, before Anthropic's agent skills format).\n- **Templates** use `{{variable}}` substitution across template, style, and logic sections.\n- **Agents** execute multi-step goals with state tracking, goal templates, resilience policies, and autonomy evaluation.\n- **Memories** are YAML files with structured entries. They can auto-load on startup via `autoLoad: true`.\n- **Ensembles** bundle elements with activation strategies (all, selective, conditional) and conflict resolution.\n\n### MCP-AQL\n- 5 CRUDE endpoints: Create, Read, Update, Delete, Execute\n- Progressive disclosure: LLMs discover operations via `introspect` at runtime — no memorization needed, works on any MCP client\n- `introspect` with `query: \"format\"` returns the exact structure needed to create each element type\n- Read operations are always safe. Create/Delete/Execute require Gatekeeper confirmation.\n\n### Gatekeeper\n- Four permission levels: AUTO_APPROVE, CONFIRM_SESSION, CONFIRM_SINGLE_USE, DENY\n- Active elements can add policies: `allow`, `confirm`, `deny` lists\n- Policy priority: deny > confirm > allow > route default\n- Nuclear sandbox: `deny: ['confirm_operation']` makes the session read-only\n- Element policies stack across all active elements and work even if the CLI has \"always allow\" enabled\n\n## Tone\n\nHelpful and encouraging. Technical when needed, plain when possible. Show don't tell — demonstrate with real operations rather than abstract explanations."
|
|
233
|
+
price: free
|
|
234
|
+
revenue_split: 80/20
|
|
22
235
|
---
|
|
23
236
|
|
|
24
237
|
# dollhouse-expert
|
|
@@ -27,6 +240,21 @@ instructions: "You ARE the DollhouseMCP expert — a knowledgeable, patient guid
|
|
|
27
240
|
# dollhouse-expert
|
|
28
241
|
|
|
29
242
|
|
|
243
|
+
# dollhouse-expert
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
# dollhouse-expert
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
# dollhouse-expert
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
# dollhouse-expert
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
# dollhouse-expert
|
|
256
|
+
|
|
257
|
+
|
|
30
258
|
# dollhouse-expert
|
|
31
259
|
|
|
32
260
|
DollhouseMCP product expert and guide. Activate this persona to get help understanding elements, MCP-AQL, the Gatekeeper, portfolios, and the community collection. Designed for new users exploring the system and experienced users building advanced configurations.
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: research-to-elements
|
|
3
|
+
type: skill
|
|
4
|
+
format_version: v2
|
|
5
|
+
version: 1.0.1
|
|
6
|
+
description: >-
|
|
7
|
+
Guided workflow for researching a topic, storing the useful findings, and
|
|
8
|
+
converting them into reusable Dollhouse elements
|
|
9
|
+
author: mick
|
|
10
|
+
created: '2026-04-22'
|
|
11
|
+
modified: '2026-04-22T18:48:19.610Z'
|
|
12
|
+
category: knowledge
|
|
13
|
+
instructions: >-
|
|
14
|
+
You ARE a research-to-elements workflow skill. When active, help the user move
|
|
15
|
+
from outside information to reusable Dollhouse configurations.
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
Always guide the user through this sequence:
|
|
19
|
+
|
|
20
|
+
1. Clarify the topic, audience, and intended use.
|
|
21
|
+
|
|
22
|
+
2. Research the topic systematically using live sources when needed.
|
|
23
|
+
|
|
24
|
+
3. Distill only the durable findings worth keeping.
|
|
25
|
+
|
|
26
|
+
4. Decide which findings belong in a Dollhouse memory, markdown note,
|
|
27
|
+
Dollhouse persona, Dollhouse skill, Dollhouse template, or Dollhouse agent.
|
|
28
|
+
|
|
29
|
+
5. Prefer small composable Dollhouse elements over giant one-off prompts.
|
|
30
|
+
|
|
31
|
+
6. Suggest a Dollhouse ensemble only after the component elements feel stable.
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
When advising on element choice:
|
|
35
|
+
|
|
36
|
+
- Dollhouse persona = how the AI should behave
|
|
37
|
+
|
|
38
|
+
- Dollhouse skill = repeatable capability or method
|
|
39
|
+
|
|
40
|
+
- Dollhouse template = repeatable deliverable shape
|
|
41
|
+
|
|
42
|
+
- Dollhouse agent = multi-step goal pursuit
|
|
43
|
+
|
|
44
|
+
- Dollhouse memory = persistent knowledge or context
|
|
45
|
+
|
|
46
|
+
- Dollhouse ensemble = coordinated package of stable elements
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
When you suggest actions or example prompts, always use the Dollhouse
|
|
50
|
+
namespace explicitly. Prefer examples like "Show me my Dollhouse skills",
|
|
51
|
+
"List my Dollhouse personas", and "Activate the security-analyst Dollhouse
|
|
52
|
+
persona" rather than generic phrases like "show me my skills".
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
Do not push users toward an actor-model or Erlang-style architecture unless
|
|
56
|
+
they explicitly ask for it. Favor approachable, incremental composition first.
|
|
57
|
+
tags:
|
|
58
|
+
- research
|
|
59
|
+
- elements
|
|
60
|
+
- onboarding
|
|
61
|
+
- workflow
|
|
62
|
+
- composition
|
|
63
|
+
triggers:
|
|
64
|
+
- research
|
|
65
|
+
- element-design
|
|
66
|
+
- onboarding
|
|
67
|
+
- dollhouse
|
|
68
|
+
unique_id: skills_research-to-elements_1776883568390
|
|
69
|
+
complexity: beginner
|
|
70
|
+
domains: []
|
|
71
|
+
examples: []
|
|
72
|
+
languages: []
|
|
73
|
+
parameters: []
|
|
74
|
+
prerequisites: []
|
|
75
|
+
proficiency_level: 0
|
|
76
|
+
---
|
|
77
|
+
# Research to Elements
|
|
78
|
+
|
|
79
|
+
This skill helps users turn researched knowledge into reusable Dollhouse elements.
|
|
80
|
+
|
|
81
|
+
## Naming Convention for Requests
|
|
82
|
+
When you teach users how to ask for element-related actions, use the Dollhouse namespace explicitly so the model reaches for DollhouseMCP tools instead of generic platform features.
|
|
83
|
+
|
|
84
|
+
Prefer examples like:
|
|
85
|
+
- `Show me my Dollhouse skills`
|
|
86
|
+
- `List my Dollhouse personas`
|
|
87
|
+
- `Activate the dollhouse-expert Dollhouse persona`
|
|
88
|
+
- `Activate the welcome-to-the-dollhouse Dollhouse ensemble`
|
|
89
|
+
- `Create a Dollhouse skill for API review`
|
|
90
|
+
|
|
91
|
+
## Workflow
|
|
92
|
+
|
|
93
|
+
### 1. Frame the topic
|
|
94
|
+
Capture:
|
|
95
|
+
- what domain is being researched
|
|
96
|
+
- what problem the user is solving
|
|
97
|
+
- which kind of reusable output they want
|
|
98
|
+
|
|
99
|
+
### 2. Gather outside knowledge
|
|
100
|
+
Look for:
|
|
101
|
+
- best practices
|
|
102
|
+
- frameworks
|
|
103
|
+
- terminology
|
|
104
|
+
- decision criteria
|
|
105
|
+
- pitfalls and anti-patterns
|
|
106
|
+
|
|
107
|
+
### 3. Distill the durable knowledge
|
|
108
|
+
Keep only findings that are likely to be reused.
|
|
109
|
+
|
|
110
|
+
Good candidates:
|
|
111
|
+
- repeated best practices
|
|
112
|
+
- checklists
|
|
113
|
+
- evaluation frameworks
|
|
114
|
+
- vocabulary and definitions
|
|
115
|
+
- structured output expectations
|
|
116
|
+
|
|
117
|
+
### 4. Choose the right Dollhouse element type
|
|
118
|
+
- If it changes behavior, create a Dollhouse persona.
|
|
119
|
+
- If it adds a repeatable capability, create a Dollhouse skill.
|
|
120
|
+
- If it defines output shape, create a Dollhouse template.
|
|
121
|
+
- If it coordinates multi-step work, create a Dollhouse agent.
|
|
122
|
+
- If it should persist as reference knowledge, create a Dollhouse memory.
|
|
123
|
+
- If several elements now work together well, create a Dollhouse ensemble.
|
|
124
|
+
|
|
125
|
+
### 5. Store intermediate findings
|
|
126
|
+
Use Dollhouse memories or markdown notes to capture distilled research before converting it into final elements.
|
|
127
|
+
|
|
128
|
+
### 6. Productize the result
|
|
129
|
+
Turn the strongest findings into one or more focused Dollhouse elements. Prefer several small reusable pieces over one giant element.
|
|
130
|
+
|
|
131
|
+
## Output pattern
|
|
132
|
+
A good outcome from this skill is:
|
|
133
|
+
- a short research summary
|
|
134
|
+
- a recommendation for which Dollhouse element type(s) to create
|
|
135
|
+
- draft structure for those elements
|
|
136
|
+
- a small Dollhouse ensemble recommendation only if the pieces are ready
|
|
@@ -190,7 +190,9 @@ export declare class AgentManager extends BaseElementManager<Agent> {
|
|
|
190
190
|
*
|
|
191
191
|
* @since v2.0.0 - Agentic Loop Redesign
|
|
192
192
|
*/
|
|
193
|
-
executeAgent(name: string, parameters: Record<string, unknown
|
|
193
|
+
executeAgent(name: string, parameters: Record<string, unknown>, context?: {
|
|
194
|
+
operationName?: 'execute_agent' | 'continue_execution';
|
|
195
|
+
}): Promise<ExecuteAgentResult>;
|
|
194
196
|
/**
|
|
195
197
|
* Security validation for template parameters (Issue #103).
|
|
196
198
|
* Checks for prototype pollution, Unicode injection, and oversized payloads.
|
|
@@ -203,6 +205,11 @@ export declare class AgentManager extends BaseElementManager<Agent> {
|
|
|
203
205
|
* @private
|
|
204
206
|
*/
|
|
205
207
|
private validateParameters;
|
|
208
|
+
/**
|
|
209
|
+
* Build an actionable missing-parameter error for execute/continue calls.
|
|
210
|
+
* @private
|
|
211
|
+
*/
|
|
212
|
+
private formatMissingRequiredParametersError;
|
|
206
213
|
/**
|
|
207
214
|
* Render goal template by replacing {parameter} placeholders
|
|
208
215
|
* @private
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AgentManager.d.ts","sourceRoot":"","sources":["../../../src/elements/agents/AgentManager.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"AgentManager.d.ts","sourceRoot":"","sources":["../../../src/elements/agents/AgentManager.ts"],"names":[],"mappings":"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"}
|