opencode-orchestrator 0.9.19 → 0.9.21
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/dist/agents/prompts/commander/identity.d.ts +1 -1
- package/dist/agents/prompts/commander/role.d.ts +1 -1
- package/dist/agents/prompts/common/anti-hallucination.d.ts +2 -1
- package/dist/agents/prompts/common/environment-discovery.d.ts +2 -1
- package/dist/agents/prompts/common/verification.d.ts +1 -1
- package/dist/agents/prompts/planner/forbidden.d.ts +1 -1
- package/dist/agents/prompts/planner/required.d.ts +1 -1
- package/dist/agents/prompts/planner/research.d.ts +3 -1
- package/dist/agents/prompts/reviewer/required.d.ts +1 -1
- package/dist/agents/prompts/reviewer/verification.d.ts +3 -1
- package/dist/agents/prompts/worker/quality.d.ts +2 -0
- package/dist/agents/prompts/worker/required.d.ts +1 -1
- package/dist/agents/prompts/worker/workflow.d.ts +2 -0
- package/dist/index.js +530 -252
- package/dist/shared/prompt/constants/status.d.ts +35 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Commander Identity
|
|
3
3
|
*/
|
|
4
|
-
export declare const COMMANDER_IDENTITY
|
|
4
|
+
export declare const COMMANDER_IDENTITY: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Commander Role Definition
|
|
3
3
|
*/
|
|
4
|
-
export declare const COMMANDER_ROLE
|
|
4
|
+
export declare const COMMANDER_ROLE: string;
|
|
@@ -2,5 +2,6 @@
|
|
|
2
2
|
* Anti-Hallucination Rules
|
|
3
3
|
*
|
|
4
4
|
* Core rules to prevent LLM from making up information.
|
|
5
|
+
* Philosophy: VERIFY before you trust, CITE before you claim.
|
|
5
6
|
*/
|
|
6
|
-
export declare const ANTI_HALLUCINATION_CORE
|
|
7
|
+
export declare const ANTI_HALLUCINATION_CORE: string;
|
|
@@ -2,5 +2,6 @@
|
|
|
2
2
|
* Environment Discovery Prompt
|
|
3
3
|
*
|
|
4
4
|
* PHASE 0: Mandatory first step - understand project before ANY action
|
|
5
|
+
* Designed to be technology-agnostic and adaptable to any project type.
|
|
5
6
|
*/
|
|
6
|
-
export declare const ENVIRONMENT_DISCOVERY
|
|
7
|
+
export declare const ENVIRONMENT_DISCOVERY: string;
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Checklist for verifying code before marking complete.
|
|
5
5
|
*/
|
|
6
|
-
export declare const VERIFICATION_REQUIREMENTS
|
|
6
|
+
export declare const VERIFICATION_REQUIREMENTS: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Planner Forbidden Actions
|
|
3
3
|
*/
|
|
4
|
-
export declare const PLANNER_FORBIDDEN
|
|
4
|
+
export declare const PLANNER_FORBIDDEN: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Planner Required Actions
|
|
3
3
|
*/
|
|
4
|
-
export declare const PLANNER_REQUIRED
|
|
4
|
+
export declare const PLANNER_REQUIRED: string;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Planner Research Workflow
|
|
3
|
+
*
|
|
4
|
+
* Adaptive research - find the RIGHT sources for THIS project.
|
|
3
5
|
*/
|
|
4
|
-
export declare const PLANNER_RESEARCH
|
|
6
|
+
export declare const PLANNER_RESEARCH: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Reviewer Required Actions
|
|
3
3
|
*/
|
|
4
|
-
export declare const REVIEWER_REQUIRED
|
|
4
|
+
export declare const REVIEWER_REQUIRED: string;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Reviewer Verification Process
|
|
3
|
+
*
|
|
4
|
+
* Adaptive verification based on discovered project environment.
|
|
3
5
|
*/
|
|
4
|
-
export declare const REVIEWER_VERIFICATION
|
|
6
|
+
export declare const REVIEWER_VERIFICATION: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Worker Required Actions
|
|
3
3
|
*/
|
|
4
|
-
export declare const WORKER_REQUIRED
|
|
4
|
+
export declare const WORKER_REQUIRED: string;
|