@liangjie559567/ultrapower 5.5.34 → 5.5.35

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.
@@ -8,11 +8,11 @@
8
8
  {
9
9
  "name": "ultrapower",
10
10
  "description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution",
11
- "version": "5.5.34",
11
+ "version": "5.5.35",
12
12
  "source": {
13
13
  "source": "npm",
14
14
  "package": "@liangjie559567/ultrapower",
15
- "version": "5.5.34"
15
+ "version": "5.5.35"
16
16
  },
17
17
  "author": {
18
18
  "name": "liangjie559567"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ultrapower",
3
3
  "description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution",
4
- "version": "5.5.34",
4
+ "version": "5.5.35",
5
5
  "author": {
6
6
  "name": "liangjie559567"
7
7
  },
@@ -105,8 +105,8 @@ export declare const stateTools: ({
105
105
  };
106
106
  handler: (args: {
107
107
  mode: "autopilot" | "ultrapilot" | "team" | "pipeline" | "ralph" | "ultrawork" | "ultraqa" | "swarm" | "ralplan";
108
- workingDirectory?: string | undefined;
109
108
  state?: Record<string, unknown> | undefined;
109
+ workingDirectory?: string | undefined;
110
110
  session_id?: string | undefined;
111
111
  active?: boolean | undefined;
112
112
  iteration?: number | undefined;
@@ -195,8 +195,8 @@ export declare const stateTools: ({
195
195
  required?: undefined;
196
196
  };
197
197
  handler: (args: {
198
- workingDirectory?: string | undefined;
199
198
  mode?: "autopilot" | "ultrapilot" | "team" | "pipeline" | "ralph" | "ultrawork" | "ultraqa" | "swarm" | "ralplan" | undefined;
199
+ workingDirectory?: string | undefined;
200
200
  session_id?: string | undefined;
201
201
  }) => Promise<{
202
202
  content: Array<{
@@ -24,7 +24,7 @@ export declare const traceTools: ({
24
24
  };
25
25
  };
26
26
  handler: (args: {
27
- filter?: "tools" | "agents" | "hooks" | "skills" | "all" | "keywords" | "modes" | undefined;
27
+ filter?: "skills" | "tools" | "all" | "hooks" | "agents" | "keywords" | "modes" | undefined;
28
28
  workingDirectory?: string | undefined;
29
29
  sessionId?: string | undefined;
30
30
  last?: number | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liangjie559567/ultrapower",
3
- "version": "5.5.34",
3
+ "version": "5.5.35",
4
4
  "description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,170 +0,0 @@
1
- /**
2
- * Agent Definitions for Oh-My-Claude-Sisyphus
3
- *
4
- * This module provides:
5
- * 1. Re-exports of base agents from individual files
6
- * 2. Tiered agent variants with dynamically loaded prompts from /agents/*.md
7
- * 3. getAgentDefinitions() for agent registry
8
- * 4. omcSystemPrompt for the main orchestrator
9
- */
10
- import type { AgentConfig, ModelType } from '../shared/types.js';
11
- import { loadAgentPrompt } from './utils.js';
12
- export { architectAgent } from './architect.js';
13
- export { designerAgent } from './designer.js';
14
- export { writerAgent } from './writer.js';
15
- export { visionAgent } from './vision.js';
16
- export { criticAgent } from './critic.js';
17
- export { analystAgent } from './analyst.js';
18
- export { executorAgent } from './executor.js';
19
- export { plannerAgent } from './planner.js';
20
- export { deepExecutorAgent } from './deep-executor.js';
21
- export { qaTesterAgent } from './qa-tester.js';
22
- export { scientistAgent } from './scientist.js';
23
- export { exploreAgent } from './explore.js';
24
- /** @deprecated Use dependency-expert agent instead */
25
- export { documentSpecialistAgent } from './document-specialist.js';
26
- /** @deprecated Use document-specialist agent instead */
27
- export { documentSpecialistAgent as researcherAgent } from './document-specialist.js';
28
- export { loadAgentPrompt };
29
- /**
30
- * Debugger Agent - Root-Cause Analysis & Debugging (Sonnet)
31
- */
32
- export declare const debuggerAgent: AgentConfig;
33
- /**
34
- * Verifier Agent - Completion Evidence & Test Validation (Sonnet)
35
- */
36
- export declare const verifierAgent: AgentConfig;
37
- /**
38
- * Style-Reviewer Agent - Code Style & Conventions (Haiku)
39
- */
40
- export declare const styleReviewerAgent: AgentConfig;
41
- /**
42
- * Quality-Reviewer Agent - Logic Defects & Maintainability (Sonnet)
43
- */
44
- export declare const qualityReviewerAgent: AgentConfig;
45
- /**
46
- * API-Reviewer Agent - API Contracts & Versioning (Sonnet)
47
- */
48
- export declare const apiReviewerAgent: AgentConfig;
49
- /**
50
- * Performance-Reviewer Agent - Performance & Complexity (Sonnet)
51
- */
52
- export declare const performanceReviewerAgent: AgentConfig;
53
- /**
54
- * Dependency-Expert Agent - External SDK/API/Package Evaluation (Sonnet)
55
- * Replaces: researcher agent
56
- */
57
- export declare const dependencyExpertAgent: AgentConfig;
58
- /**
59
- * Test-Engineer Agent - Test Strategy & Coverage (Sonnet)
60
- * Replaces: tdd-guide agent
61
- */
62
- export declare const testEngineerAgent: AgentConfig;
63
- /**
64
- * Quality-Strategist Agent - Quality Strategy & Release Readiness (Sonnet)
65
- */
66
- export declare const qualityStrategistAgent: AgentConfig;
67
- /**
68
- * Database-Expert Agent - Database Design & Query Optimization (Sonnet)
69
- */
70
- export declare const databaseExpertAgent: AgentConfig;
71
- /**
72
- * DevOps-Engineer Agent - CI/CD & Infrastructure as Code (Sonnet)
73
- */
74
- export declare const devopsEngineerAgent: AgentConfig;
75
- /**
76
- * I18n-Specialist Agent - Internationalization & Localization (Sonnet)
77
- */
78
- export declare const i18nSpecialistAgent: AgentConfig;
79
- /**
80
- * Accessibility-Auditor Agent - WCAG Compliance & Inclusive Design (Sonnet)
81
- */
82
- export declare const accessibilityAuditorAgent: AgentConfig;
83
- /**
84
- * API-Designer Agent - REST/GraphQL API Design & Contracts (Sonnet)
85
- */
86
- export declare const apiDesignerAgent: AgentConfig;
87
- /**
88
- * Product Manager Agent - Problem Framing & Value Hypothesis (Sonnet)
89
- */
90
- export declare const productManagerAgent: AgentConfig;
91
- /**
92
- * UX Researcher Agent - Heuristic Audits & Usability (Sonnet)
93
- */
94
- export declare const uxResearcherAgent: AgentConfig;
95
- /**
96
- * Information Architect Agent - Taxonomy & Navigation (Sonnet)
97
- */
98
- export declare const informationArchitectAgent: AgentConfig;
99
- /**
100
- * Product Analyst Agent - Metrics & Experiment Design (Sonnet)
101
- */
102
- export declare const productAnalystAgent: AgentConfig;
103
- /**
104
- * Security-Reviewer Agent - Security Vulnerability Detection (Sonnet)
105
- */
106
- export declare const securityReviewerAgent: AgentConfig;
107
- /**
108
- * Build-Fixer Agent - Build Error Resolution (Sonnet)
109
- */
110
- export declare const buildFixerAgent: AgentConfig;
111
- /**
112
- * Code-Reviewer Agent - Expert Code Review (Opus)
113
- */
114
- export declare const codeReviewerAgent: AgentConfig;
115
- /**
116
- * Git-Master Agent - Git Operations Expert (Sonnet)
117
- */
118
- export declare const gitMasterAgent: AgentConfig;
119
- /**
120
- * @deprecated Use dependency-expert agent instead
121
- */
122
- export declare const researcherAgentAlias: AgentConfig;
123
- /**
124
- * @deprecated Use test-engineer agent instead
125
- */
126
- export declare const tddGuideAgentAlias: AgentConfig;
127
- /**
128
- * Agent Role Disambiguation
129
- *
130
- * HIGH-tier review/planning agents have distinct, non-overlapping roles:
131
- *
132
- * | Agent | Role | What They Do | What They Don't Do |
133
- * |-------|------|--------------|-------------------|
134
- * | architect | code-analysis | Analyze code, debug, verify | Requirements, plan creation, plan review |
135
- * | analyst | requirements-analysis | Find requirement gaps | Code analysis, planning, plan review |
136
- * | planner | plan-creation | Create work plans | Requirements, code analysis, plan review |
137
- * | critic | plan-review | Review plan quality | Requirements, code analysis, plan creation |
138
- *
139
- * Workflow: explore → analyst → planner → critic → executor → architect (verify)
140
- */
141
- export declare const axiomRequirementAnalystAgent: AgentConfig;
142
- export declare const axiomProductDesignerAgent: AgentConfig;
143
- export declare const axiomReviewAggregatorAgent: AgentConfig;
144
- export declare const axiomPrdCrafterAgent: AgentConfig;
145
- export declare const axiomSystemArchitectAgent: AgentConfig;
146
- export declare const axiomEvolutionEngineAgent: AgentConfig;
147
- export declare const axiomContextManagerAgent: AgentConfig;
148
- export declare const axiomWorkerAgent: AgentConfig;
149
- export declare const axiomUxDirectorAgent: AgentConfig;
150
- export declare const axiomProductDirectorAgent: AgentConfig;
151
- export declare const axiomDomainExpertAgent: AgentConfig;
152
- export declare const axiomTechLeadAgent: AgentConfig;
153
- export declare const axiomCriticAgent: AgentConfig;
154
- export declare const axiomSubPrdWriterAgent: AgentConfig;
155
- /**
156
- * Get all agent definitions as a record for use with Claude Agent SDK
157
- */
158
- export declare function getAgentDefinitions(overrides?: Partial<Record<string, Partial<AgentConfig>>>): Record<string, {
159
- description: string;
160
- prompt: string;
161
- tools?: string[];
162
- disallowedTools?: string[];
163
- model?: ModelType;
164
- defaultModel?: ModelType;
165
- }>;
166
- /**
167
- * OMC System Prompt - The main orchestrator
168
- */
169
- export declare const omcSystemPrompt = "You are the relentless orchestrator of a multi-agent development system.\n\n## RELENTLESS EXECUTION\n\nYou are BOUND to your task list. You do not stop. You do not quit. You do not take breaks. Work continues until EVERY task is COMPLETE.\n\n## Your Core Duty\nYou coordinate specialized subagents to accomplish complex software engineering tasks. Abandoning work mid-task is not an option. If you stop without completing ALL tasks, you have failed.\n\n## Available Subagents (49 unique agents, 51 total including aliases: researcher\u2192document-specialist, tdd-guide\u2192test-engineer)\n\n### Build/Analysis Lane\n- **explore**: Internal codebase discovery (haiku) \u2014 fast pattern matching\n- **analyst**: Requirements clarity (opus) \u2014 hidden constraint analysis\n- **planner**: Task sequencing (opus) \u2014 execution plans and risk flags\n- **architect**: System design (opus) \u2014 boundaries, interfaces, tradeoffs\n- **debugger**: Root-cause analysis (sonnet) \u2014 regression isolation, diagnosis\n- **executor**: Code implementation (sonnet) \u2014 features and refactoring\n- **deep-executor**: Complex execution (opus) \u2014 autonomous goal-oriented work\n- **verifier**: Completion validation (sonnet) \u2014 evidence, claims, test adequacy\n\n### Review Lane\n- **style-reviewer**: Code style (haiku) \u2014 formatting, naming, idioms\n- **quality-reviewer**: Logic defects (sonnet) \u2014 maintainability, anti-patterns\n- **api-reviewer**: API contracts (sonnet) \u2014 versioning, backward compatibility\n- **security-reviewer**: Security audits (sonnet) \u2014 vulns, trust boundaries, authn/authz\n- **performance-reviewer**: Performance (sonnet) \u2014 hotspots, complexity, optimization\n- **code-reviewer**: Comprehensive review (opus) \u2014 orchestrates all review aspects\n\n### Domain Specialists\n- **dependency-expert**: SDK/API evaluation (sonnet) \u2014 external package research\n- **test-engineer**: Test strategy (sonnet) \u2014 coverage, flaky test hardening\n- **quality-strategist**: Quality strategy (sonnet) \u2014 release readiness, risk assessment, quality gates\n- **build-fixer**: Build errors (sonnet) \u2014 toolchain/type failures\n- **designer**: UI/UX architecture (sonnet) \u2014 interaction design\n- **writer**: Documentation (haiku) \u2014 docs, migration notes\n- **qa-tester**: CLI testing (sonnet) \u2014 interactive runtime validation via tmux\n- **scientist**: Data analysis (sonnet) \u2014 statistics and research\n- **document-specialist**: External docs (sonnet) \u2014 documentation and reference lookup\n- **git-master**: Git operations (sonnet) \u2014 commits, rebasing, history\n- **database-expert**: Database design (sonnet) \u2014 query optimization and migrations\n- **devops-engineer**: CI/CD (sonnet) \u2014 containerization, infrastructure as code\n- **i18n-specialist**: Internationalization (sonnet) \u2014 localization and multilingual support\n- **accessibility-auditor**: Web accessibility (sonnet) \u2014 WCAG compliance audits\n- **api-designer**: API design (sonnet) \u2014 REST/GraphQL contracts and definitions\n\n### Product Lane\n- **product-manager**: Problem framing (sonnet) \u2014 personas, JTBD, PRDs, KPI trees\n- **ux-researcher**: UX research (sonnet) \u2014 heuristic audits, usability, accessibility\n- **information-architect**: Info architecture (sonnet) \u2014 taxonomy, navigation, findability\n- **product-analyst**: Product analytics (sonnet) \u2014 metrics, funnels, experiment design\n\n### Coordination\n- **critic**: Plan review (opus) \u2014 critical challenge and evaluation\n- **vision**: Visual analysis (sonnet) \u2014 images, screenshots, diagrams\n\n### Axiom Lane\n- **axiom-requirement-analyst**: Requirements gate (sonnet) \u2014 PASS/CLARIFY/REJECT triage\n- **axiom-product-designer**: Draft PRD (sonnet) \u2014 Mermaid flow generation\n- **axiom-review-aggregator**: Expert review (sonnet) \u2014 5-expert parallel review aggregation\n- **axiom-prd-crafter**: Engineering PRD (sonnet) \u2014 gated validation\n- **axiom-system-architect**: Task DAG (sonnet) \u2014 atomic task manifest generation\n- **axiom-evolution-engine**: Knowledge harvest (sonnet) \u2014 pattern detection, workflow optimization\n- **axiom-context-manager**: Memory system (sonnet) \u2014 7-operation read/write/checkpoint\n- **axiom-worker**: PM\u2192Worker protocol (sonnet) \u2014 QUESTION/COMPLETE/BLOCKED output\n- **axiom-ux-director**: UX review (sonnet) \u2014 experience expert, outputs review_ux.md\n- **axiom-product-director**: Product strategy (sonnet) \u2014 outputs review_product.md\n- **axiom-domain-expert**: Domain knowledge (sonnet) \u2014 outputs review_domain.md\n- **axiom-tech-lead**: Technical feasibility (sonnet) \u2014 outputs review_tech.md\n- **axiom-critic**: Security/quality review (sonnet) \u2014 outputs review_critic.md\n- **axiom-sub-prd-writer**: Sub-PRD writer (sonnet) \u2014 decomposes manifest tasks\n\n## Orchestration Principles\n1. **Delegate Aggressively**: Fire off subagents for specialized tasks - don't do everything yourself\n2. **Parallelize Ruthlessly**: Launch multiple subagents concurrently whenever tasks are independent\n3. **PERSIST RELENTLESSLY**: Continue until ALL tasks are VERIFIED complete - check your todo list BEFORE stopping\n4. **Communicate Progress**: Keep the user informed but DON'T STOP to explain when you should be working\n5. **Verify Thoroughly**: Test, check, verify - then verify again\n\n## Agent Combinations\n\n### Architect + QA-Tester (Diagnosis -> Verification Loop)\nFor debugging CLI apps and services:\n1. **architect** diagnoses the issue, provides root cause analysis\n2. **architect** outputs a test plan with specific commands and expected outputs\n3. **qa-tester** executes the test plan in tmux, captures real outputs\n4. If verification fails, feed results back to architect for re-diagnosis\n5. Repeat until verified\n\nThis is the recommended workflow for any bug that requires running actual services to verify.\n\n### Verification Guidance (Gated for Token Efficiency)\n\n**Verification priority order:**\n1. **Existing tests** (run the project's test command) - PREFERRED, cheapest\n2. **Direct commands** (curl, simple CLI) - cheap\n3. **QA-Tester** (tmux sessions) - expensive, use sparingly\n\n**When to use qa-tester:**\n- No test suite covers the behavior\n- Interactive CLI input/output simulation needed\n- Service startup/shutdown testing required\n- Streaming/real-time behavior verification\n\n**When NOT to use qa-tester:**\n- Project has tests that cover the functionality -> run tests\n- Simple command verification -> run directly\n- Static code analysis -> use architect\n\n## Workflow\n1. Analyze the user's request and break it into tasks using TodoWrite\n2. Mark the first task in_progress and BEGIN WORKING\n3. Delegate to appropriate subagents based on task type\n4. Coordinate results and handle any issues WITHOUT STOPPING\n5. Mark tasks complete ONLY when verified\n6. LOOP back to step 2 until ALL tasks show 'completed'\n7. Final verification: Re-read todo list, confirm 100% completion\n8. Only THEN may you rest\n\n## CRITICAL RULES - VIOLATION IS FAILURE\n\n1. **NEVER STOP WITH INCOMPLETE WORK** - If your todo list has pending/in_progress items, YOU ARE NOT DONE\n2. **ALWAYS VERIFY** - Check your todo list before ANY attempt to conclude\n3. **NO PREMATURE CONCLUSIONS** - Saying \"I've completed the task\" without verification is a LIE\n4. **PARALLEL EXECUTION** - Use it whenever possible for speed\n5. **CONTINUOUS PROGRESS** - Report progress but keep working\n6. **WHEN BLOCKED, UNBLOCK** - Don't stop because something is hard; find another way\n7. **ASK ONLY WHEN NECESSARY** - Clarifying questions are for ambiguity, not for avoiding work\n\n## Completion Checklist\nBefore concluding, you MUST verify:\n- [ ] Every todo item is marked 'completed'\n- [ ] All requested functionality is implemented\n- [ ] Tests pass (if applicable)\n- [ ] No errors remain unaddressed\n- [ ] The user's original request is FULLY satisfied\n\nIf ANY checkbox is unchecked, YOU ARE NOT DONE. Continue working.";
170
- //# sourceMappingURL=definitions.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"definitions.d.ts","sourceRoot":"","sources":["../../src/agents/definitions.ts"],"names":[],"mappings":"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"}