@adaptic/maestro 1.1.2 → 1.1.4
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.
|
@@ -263,13 +263,21 @@ Sections to rewrite:
|
|
|
263
263
|
- **## Operating Principles** -- Replace with the new principles. Use the same numbered-list format.
|
|
264
264
|
- **## Communication Rules** -- Adapt the autonomy model to the archetype. An executive-operator has broad autonomy; a compliance-officer escalates more. Rewrite the "sends autonomously" and "escalates" sections with the new agent's name and appropriate boundaries. Keep the Immediate Acknowledgement Rule, Document Sharing, and Logging subsections but replace the agent name throughout.
|
|
265
265
|
- **## People (Key Leadership)** -- Update the "That's you" line to the new agent. Keep other people entries unless the user indicated changes.
|
|
266
|
+
- **## Control Towers** -- Replace the 12 generic org-wide control towers with 8-10 towers scoped to the agent's specific role and domain. Each tower should reflect what this agent actually monitors and manages. Generate towers based on archetype:
|
|
267
|
+
- **executive-operator**: Keep the original 12 org-wide towers (they are appropriate for this archetype).
|
|
268
|
+
- **technical-leader**: Model/platform architecture, R&D strategy, engineering quality, platform delivery, infrastructure & scalability, security & compliance, performance & benchmarking, team growth, systems & automation, self-governance.
|
|
269
|
+
- **commercial-leader**: Pipeline management, partnership development, investor relations, market intelligence, revenue operations, competitive analysis, client success, commercial governance, systems & automation, self-governance.
|
|
270
|
+
- **compliance-officer**: Regulatory submissions, licence management, policy framework, audit readiness, risk register, cross-jurisdiction compliance, legal obligations, reporting & disclosure, systems & automation, self-governance.
|
|
271
|
+
- **product-leader**: Product roadmap, user research & insights, feature delivery, design system, product-market fit, metrics & analytics, cross-functional alignment, stakeholder communication, systems & automation, self-governance.
|
|
272
|
+
- **operations-leader**: Process efficiency, fund operations, vendor management, capacity planning, organisational design, SLA compliance, cost management, operational resilience, systems & automation, self-governance.
|
|
273
|
+
Each tower should have a brief description of what it monitors (same format as the original: `**Name** — description`).
|
|
266
274
|
|
|
267
275
|
Replace ALL instances of the old agent's first name with the new agent's first name throughout the entire CLAUDE.md file. Be thorough -- check every section header, bullet point, and inline reference.
|
|
268
276
|
|
|
269
277
|
Do NOT modify these sections (keep them exactly as they are, except for agent name substitution):
|
|
270
278
|
- Repository Layout, Key Config Files, Brand Assets, PDF Generation, Visual Media Generation
|
|
271
279
|
- Source Repositories, Hiring Management (unless archetype is not executive-operator, in which case trim or adapt)
|
|
272
|
-
- Operational Infrastructure
|
|
280
|
+
- Operational Infrastructure
|
|
273
281
|
- Build & Test, Code Standards, Three Operating Modes, Parallel Execution
|
|
274
282
|
- Agent Development, Workflow Development
|
|
275
283
|
|
package/package.json
CHANGED
|
@@ -331,7 +331,7 @@ configure_boot_services() {
|
|
|
331
331
|
|
|
332
332
|
# Check which are loaded
|
|
333
333
|
local loaded_count
|
|
334
|
-
loaded_count=$(launchctl list 2>/dev/null | grep -c "ai.adaptic" ||
|
|
334
|
+
loaded_count=$(launchctl list 2>/dev/null | grep -c "ai.adaptic" || true)
|
|
335
335
|
if [ "$loaded_count" -gt 0 ]; then
|
|
336
336
|
ok "$loaded_count agents currently loaded"
|
|
337
337
|
else
|