@jmanuelcorral/openteam 0.9.1 → 0.9.2
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/README.es.md +1 -1
- package/README.md +1 -1
- package/dist/cli.js +362 -44
- package/dist/commands/dispatch.d.ts +18 -4
- package/dist/commands/dispatch.d.ts.map +1 -1
- package/dist/commands/doctor.d.ts +34 -0
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +361 -43
- package/dist/opencodeArtifacts/orchestratorAgent.d.ts +1 -1
- package/dist/opencodeArtifacts/orchestratorAgent.d.ts.map +1 -1
- package/dist/orchestrator/roles.d.ts.map +1 -1
- package/dist/orchestrator/roster.d.ts +85 -2
- package/dist/orchestrator/roster.d.ts.map +1 -1
- package/dist/orchestrator/rosterPersistence.d.ts +32 -5
- package/dist/orchestrator/rosterPersistence.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
import { type AgentRoleProfile } from "./roles";
|
|
2
3
|
/**
|
|
3
4
|
* W3 roster model (#171, #172).
|
|
4
5
|
*
|
|
@@ -28,6 +29,22 @@ export declare const RosterSchema: z.ZodObject<{
|
|
|
28
29
|
}, z.core.$strict>;
|
|
29
30
|
export type RosterEntry = z.infer<typeof RosterEntrySchema>;
|
|
30
31
|
export type Roster = z.infer<typeof RosterSchema>;
|
|
32
|
+
export type RosterParseErrorCode = "missing-json-block" | "malformed-json" | "invalid-roster-schema";
|
|
33
|
+
export declare class RosterParseError extends Error {
|
|
34
|
+
readonly code: RosterParseErrorCode;
|
|
35
|
+
constructor(code: RosterParseErrorCode, message: string);
|
|
36
|
+
}
|
|
37
|
+
export type RosterParseResult = {
|
|
38
|
+
readonly ok: true;
|
|
39
|
+
readonly roster: Roster;
|
|
40
|
+
} | {
|
|
41
|
+
readonly ok: false;
|
|
42
|
+
readonly error: RosterParseError;
|
|
43
|
+
};
|
|
44
|
+
/** Parses a roster document back into a validated {@link Roster}. Pure. */
|
|
45
|
+
export declare function parseRoster(text: string): Roster;
|
|
46
|
+
/** Tolerant pure parser for recovery and audit surfaces. */
|
|
47
|
+
export declare function parseRosterResult(text: string): RosterParseResult;
|
|
31
48
|
/**
|
|
32
49
|
* The four roles every roster must contain (#171). `orchestrator` is the primary
|
|
33
50
|
* agent itself and has no TEAM_ROLES profile; `guardian`/`scribe`/`ralph` are the
|
|
@@ -36,14 +53,80 @@ export type Roster = z.infer<typeof RosterSchema>;
|
|
|
36
53
|
*/
|
|
37
54
|
export declare const GUARANTEED_ROLE_IDS: readonly ["orchestrator", "guardian", "scribe", "ralph"];
|
|
38
55
|
export type GuaranteedRoleID = (typeof GUARANTEED_ROLE_IDS)[number];
|
|
56
|
+
/**
|
|
57
|
+
* Canonical dispatch aliases for guaranteed roles when a roster must be repaired
|
|
58
|
+
* without enough evidence to recover the user's themed name. The orchestrator
|
|
59
|
+
* role is the primary opencode agent, whose generated file is `openteam.md`;
|
|
60
|
+
* `orchestrator` remains the stable roleID, while `openteam` is the agentName.
|
|
61
|
+
*/
|
|
62
|
+
export declare const GUARANTEED_ROLE_DEFAULT_AGENT_NAMES: {
|
|
63
|
+
readonly orchestrator: "openteam";
|
|
64
|
+
readonly guardian: "guardian";
|
|
65
|
+
readonly scribe: "scribe";
|
|
66
|
+
readonly ralph: "ralph";
|
|
67
|
+
};
|
|
68
|
+
/** Default opencode dispatch alias for a guaranteed roleID. Pure. */
|
|
69
|
+
export declare function defaultAgentNameForGuaranteedRole(roleID: GuaranteedRoleID): string;
|
|
39
70
|
/** Guaranteed roleIDs absent from a roster, in canonical order. */
|
|
40
71
|
export declare function missingGuaranteedRoles(roster: Roster): GuaranteedRoleID[];
|
|
41
72
|
/** Whether every guaranteed roleID is present in the roster. */
|
|
42
73
|
export declare function hasAllGuaranteedRoles(roster: Roster): boolean;
|
|
74
|
+
/** Options for {@link auditRoster}. */
|
|
75
|
+
export type RosterAuditOptions = {
|
|
76
|
+
/** Optional config-declared role profiles, so doctor can audit the active config. */
|
|
77
|
+
readonly configuredRoles?: Readonly<Record<string, AgentRoleProfile>>;
|
|
78
|
+
};
|
|
79
|
+
export type RosterAuditFinding = {
|
|
80
|
+
readonly kind: "missing-guaranteed-role" | "non-canonical-role-id" | "unparseable-roster" | "unresolved-role-profile";
|
|
81
|
+
readonly roleID: string;
|
|
82
|
+
readonly agentName?: string;
|
|
83
|
+
readonly canonicalRoleID?: string;
|
|
84
|
+
readonly code?: RosterParseErrorCode;
|
|
85
|
+
readonly message?: string;
|
|
86
|
+
};
|
|
87
|
+
/** An informational roster entry that has no configured or built-in role profile. */
|
|
88
|
+
export type RosterUnprofiledRoleEntry = {
|
|
89
|
+
readonly roleID: string;
|
|
90
|
+
readonly agentName: string;
|
|
91
|
+
/** Unknown project roles are intentional and remain valid, so this is not an error. */
|
|
92
|
+
readonly severity: "info";
|
|
93
|
+
};
|
|
94
|
+
/** A conservative, evidence-backed non-canonical guaranteed-role entry. */
|
|
95
|
+
export type RosterMisassignedGuaranteedRoleEntry = {
|
|
96
|
+
readonly roleID: string;
|
|
97
|
+
readonly agentName: string;
|
|
98
|
+
/** The guaranteed canonical roleID that is absent from the roster. */
|
|
99
|
+
readonly missingRoleID: GuaranteedRoleID;
|
|
100
|
+
readonly reason: "agentNameMatchesMissingGuaranteedRole" | "roleIDResolvesToMissingGuaranteedRole";
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* Structured health audit for a roster.
|
|
104
|
+
*
|
|
105
|
+
* This function is deliberately conservative: it reports missing guaranteed
|
|
106
|
+
* roleIDs and unprofiled entries, but it only flags a non-canonical guaranteed
|
|
107
|
+
* role when the roster/config gives exact evidence. It never guesses that a
|
|
108
|
+
* themed roleID such as `c3po` means `scribe`; unknown project roles are valid.
|
|
109
|
+
* Pure: no I/O, clock, randomness, environment, or telemetry.
|
|
110
|
+
*/
|
|
111
|
+
export type RosterAudit = {
|
|
112
|
+
readonly findings: readonly RosterAuditFinding[];
|
|
113
|
+
/** @deprecated Use `findings` with kind `missing-guaranteed-role`. */
|
|
114
|
+
readonly hasAllGuaranteedRoles?: boolean;
|
|
115
|
+
/** @deprecated Use `findings` with kind `missing-guaranteed-role`. */
|
|
116
|
+
readonly missingGuaranteedRoleIDs?: readonly GuaranteedRoleID[];
|
|
117
|
+
/** @deprecated Use `findings` with kind `unresolved-role-profile`. */
|
|
118
|
+
readonly unprofiledRoleEntries?: readonly RosterUnprofiledRoleEntry[];
|
|
119
|
+
/** @deprecated Use `findings` with kind `non-canonical-role-id`. */
|
|
120
|
+
readonly misassignedGuaranteedRoleEntries?: readonly RosterMisassignedGuaranteedRoleEntry[];
|
|
121
|
+
};
|
|
122
|
+
/** Audits guaranteed-role and role-profile health without mutating the roster. */
|
|
123
|
+
export declare function auditRoster(roster: Roster, configuredRoles?: Readonly<Record<string, AgentRoleProfile>>): RosterAudit;
|
|
124
|
+
export declare function auditRoster(rosterText: string, configuredRoles?: Readonly<Record<string, AgentRoleProfile>>): RosterAudit;
|
|
125
|
+
export declare function auditRoster(roster: Roster, options?: RosterAuditOptions): RosterAudit;
|
|
43
126
|
/**
|
|
44
127
|
* Enforces the guaranteed-role invariant (#171): re-adds any missing guaranteed
|
|
45
|
-
* role, binding its `agentName` to the
|
|
46
|
-
*
|
|
128
|
+
* role, binding its `agentName` to the safest known dispatch alias for that
|
|
129
|
+
* role. Returns the roster unchanged when nothing is missing. Pure.
|
|
47
130
|
*/
|
|
48
131
|
export declare function enforceGuaranteedRoles(roster: Roster): Roster;
|
|
49
132
|
/** Draft roster a generator source emits before Zod validation. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"roster.d.ts","sourceRoot":"","sources":["../../src/orchestrator/roster.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;;;;;;;;;;;;GAaG;AAEH,mFAAmF;AACnF,eAAO,MAAM,iBAAiB;;;kBAKnB,CAAC;AAEZ,+DAA+D;AAC/D,eAAO,MAAM,YAAY;;;;;;kBAKd,CAAC;AAEZ,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"roster.d.ts","sourceRoot":"","sources":["../../src/orchestrator/roster.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EACL,KAAK,gBAAgB,EAGtB,MAAM,SAAS,CAAC;AAEjB;;;;;;;;;;;;;GAaG;AAEH,mFAAmF;AACnF,eAAO,MAAM,iBAAiB;;;kBAKnB,CAAC;AAEZ,+DAA+D;AAC/D,eAAO,MAAM,YAAY;;;;;;kBAKd,CAAC;AAEZ,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAIlD,MAAM,MAAM,oBAAoB,GAC5B,oBAAoB,GACpB,gBAAgB,GAChB,uBAAuB,CAAC;AAE5B,qBAAa,gBAAiB,SAAQ,KAAK;IACzC,QAAQ,CAAC,IAAI,EAAE,oBAAoB,CAAC;IAEpC,YAAY,IAAI,EAAE,oBAAoB,EAAE,OAAO,EAAE,MAAM,EAItD;CACF;AAED,MAAM,MAAM,iBAAiB,GACzB;IAAE,QAAQ,CAAC,EAAE,EAAE,IAAI,CAAC;IAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,EAAE,KAAK,CAAC;IAAC,QAAQ,CAAC,KAAK,EAAE,gBAAgB,CAAA;CAAE,CAAC;AAE7D,2EAA2E;AAC3E,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAMhD;AAED,4DAA4D;AAC5D,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,iBAAiB,CAmCjE;AAED;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,YAC9B,cAAc,EACd,UAAU,EACV,QAAQ,EACR,OAAO,CACC,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEpE;;;;;GAKG;AACH,eAAO,MAAM,mCAAmC;2BAChC,UAAU;uBACd,UAAU;qBACZ,QAAQ;oBACT,OAAO;CAC+C,CAAC;AAEhE,qEAAqE;AACrE,wBAAgB,iCAAiC,CAC/C,MAAM,EAAE,gBAAgB,GACvB,MAAM,CAER;AAMD,mEAAmE;AACnE,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,gBAAgB,EAAE,CAGzE;AAED,gEAAgE;AAChE,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAE7D;AAED,uCAAuC;AACvC,MAAM,MAAM,kBAAkB,GAAG;IAC/B,qFAAqF;IACrF,QAAQ,CAAC,eAAe,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC,CAAC;CACvE,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,CAAC,IAAI,EACT,yBAAyB,GACzB,uBAAuB,GACvB,oBAAoB,GACpB,yBAAyB,CAAC;IAC9B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAC;IAClC,QAAQ,CAAC,IAAI,CAAC,EAAE,oBAAoB,CAAC;IACrC,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,qFAAqF;AACrF,MAAM,MAAM,yBAAyB,GAAG;IACtC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,uFAAuF;IACvF,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,2EAA2E;AAC3E,MAAM,MAAM,oCAAoC,GAAG;IACjD,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,sEAAsE;IACtE,QAAQ,CAAC,aAAa,EAAE,gBAAgB,CAAC;IACzC,QAAQ,CAAC,MAAM,EACX,uCAAuC,GACvC,uCAAuC,CAAC;CAC7C,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,MAAM,WAAW,GAAG;IACxB,QAAQ,CAAC,QAAQ,EAAE,SAAS,kBAAkB,EAAE,CAAC;IACjD,sEAAsE;IACtE,QAAQ,CAAC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IACzC,sEAAsE;IACtE,QAAQ,CAAC,wBAAwB,CAAC,EAAE,SAAS,gBAAgB,EAAE,CAAC;IAChE,sEAAsE;IACtE,QAAQ,CAAC,qBAAqB,CAAC,EAAE,SAAS,yBAAyB,EAAE,CAAC;IACtE,oEAAoE;IACpE,QAAQ,CAAC,gCAAgC,CAAC,EAAE,SAAS,oCAAoC,EAAE,CAAC;CAC7F,CAAC;AAoBF,kFAAkF;AAClF,wBAAgB,WAAW,CACzB,MAAM,EAAE,MAAM,EACd,eAAe,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC,GAC3D,WAAW,CAAC;AACf,wBAAgB,WAAW,CACzB,UAAU,EAAE,MAAM,EAClB,eAAe,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC,GAC3D,WAAW,CAAC;AACf,wBAAgB,WAAW,CACzB,MAAM,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,kBAAkB,GAC3B,WAAW,CAAC;AAmHf;;;;GAIG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAU7D;AAED,mEAAmE;AACnE,MAAM,MAAM,WAAW,GAAG;IACxB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,KAAK,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CACvD,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,YAAY,GAAG,CACzB,MAAM,EAAE,MAAM,KACX,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;AAExC;;;;GAIG;AACH,wBAAsB,cAAc,CAClC,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,YAAY,GACnB,OAAO,CAAC,MAAM,CAAC,CAIjB;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAClC,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,MAAM,GACb,MAAM,GAAG,SAAS,CAEpB;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAClC,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,WAAW,GACjB,MAAM,CAOR;AAED;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAMjE;AAED;;;;GAIG;AACH,wBAAsB,sBAAsB,CAC1C,SAAS,EAAE,MAAM,EACjB,eAAe,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,GACjE,OAAO,CAAC,IAAI,CAAC,CAIf;AAED;;;;;GAKG;AACH,wBAAsB,sBAAsB,CAAC,CAAC,EAC5C,SAAS,EAAE,MAAM,EACjB,eAAe,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,EAClE,QAAQ,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GACzB,OAAO,CAAC,CAAC,CAAC,CAGZ"}
|
|
@@ -1,17 +1,44 @@
|
|
|
1
1
|
import type { StorageProvider } from "../storage/provider";
|
|
2
|
-
import { type Roster } from "./roster";
|
|
2
|
+
import { type Roster, type RosterParseError } from "./roster";
|
|
3
|
+
export { parseRoster, parseRosterResult, RosterParseError } from "./roster";
|
|
4
|
+
/**
|
|
5
|
+
* W3 roster persistence (#173).
|
|
6
|
+
*
|
|
7
|
+
* The roster round-trips through the git-tracked, portable `.opencode/openteam/`
|
|
8
|
+
* directory (decision P15b) so a second session — or a colleague who cloned the
|
|
9
|
+
* repo — reuses the same cast and the team travels with the repository. The file
|
|
10
|
+
* lives OUTSIDE `.opencode/agent/` on purpose: opencode loads every `.md` there as
|
|
11
|
+
* an agent, so a roster inside it would appear as a phantom agent.
|
|
12
|
+
*
|
|
13
|
+
* Serialisation embeds the structured roster as a JSON block inside a Markdown
|
|
14
|
+
* document, so the write/parse round-trip is exact and Zod-validated while the file
|
|
15
|
+
* stays human-readable. All disk access goes through the injected
|
|
16
|
+
* {@link StorageProvider} boundary, so this module has no direct I/O.
|
|
17
|
+
*/
|
|
3
18
|
/** Serialises a roster to the Markdown-with-JSON roster document. Pure. */
|
|
4
19
|
export declare function serializeRoster(roster: Roster): string;
|
|
5
|
-
/** Parses a roster document back into a validated {@link Roster}. Pure. */
|
|
6
|
-
export declare function parseRoster(text: string): Roster;
|
|
7
20
|
/** Writes the roster to the portable path; returns the path written. */
|
|
8
21
|
export declare function persistRoster(storage: StorageProvider, roster: Roster, path?: string): Promise<string>;
|
|
9
|
-
|
|
10
|
-
|
|
22
|
+
export type RosterFileLoadResult = {
|
|
23
|
+
readonly status: "absent";
|
|
24
|
+
readonly path: string;
|
|
25
|
+
} | {
|
|
26
|
+
readonly status: "loaded";
|
|
27
|
+
readonly path: string;
|
|
28
|
+
readonly roster: Roster;
|
|
29
|
+
} | {
|
|
30
|
+
readonly status: "invalid";
|
|
31
|
+
readonly path: string;
|
|
32
|
+
readonly error: RosterParseError;
|
|
33
|
+
};
|
|
34
|
+
/** Reads the persisted roster without throwing on malformed content. */
|
|
35
|
+
export declare function loadRosterFile(storage: StorageProvider, path?: string): Promise<RosterFileLoadResult>;
|
|
11
36
|
/** Outcome of {@link loadOrGenerateRoster}: the roster and whether it was rebuilt. */
|
|
12
37
|
export type RosterLoadResult = {
|
|
13
38
|
readonly roster: Roster;
|
|
14
39
|
readonly regenerated: boolean;
|
|
40
|
+
readonly recoveredFromInvalidPersisted?: boolean;
|
|
41
|
+
readonly invalidPersistedRosterError?: string;
|
|
15
42
|
};
|
|
16
43
|
/**
|
|
17
44
|
* Reuses the persisted cast when present, generating and persisting one only when
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rosterPersistence.d.ts","sourceRoot":"","sources":["../../src/orchestrator/rosterPersistence.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,
|
|
1
|
+
{"version":3,"file":"rosterPersistence.d.ts","sourceRoot":"","sources":["../../src/orchestrator/rosterPersistence.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAGL,KAAK,MAAM,EACX,KAAK,gBAAgB,EACtB,MAAM,UAAU,CAAC;AAElB,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE5E;;;;;;;;;;;;;GAaG;AAEH,2EAA2E;AAC3E,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAItD;AAED,wEAAwE;AACxE,wBAAsB,aAAa,CACjC,OAAO,EAAE,eAAe,EACxB,MAAM,EAAE,MAAM,EACd,IAAI,GAAE,MAA6B,GAClC,OAAO,CAAC,MAAM,CAAC,CAGjB;AAED,MAAM,MAAM,oBAAoB,GAC5B;IAAE,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;CAAE,GACpD;IACE,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;CACzB,GACD;IACE,QAAQ,CAAC,MAAM,EAAE,SAAS,CAAC;IAC3B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,KAAK,EAAE,gBAAgB,CAAC;CAClC,CAAC;AAEN,wEAAwE;AACxE,wBAAsB,cAAc,CAClC,OAAO,EAAE,eAAe,EACxB,IAAI,GAAE,MAA6B,GAClC,OAAO,CAAC,oBAAoB,CAAC,CAc/B;AAED,sFAAsF;AACtF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC;IAC9B,QAAQ,CAAC,6BAA6B,CAAC,EAAE,OAAO,CAAC;IACjD,QAAQ,CAAC,2BAA2B,CAAC,EAAE,MAAM,CAAC;CAC/C,CAAC;AAEF;;;;GAIG;AACH,wBAAsB,oBAAoB,CACxC,OAAO,EAAE,eAAe,EACxB,QAAQ,EAAE,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,EACxC,IAAI,GAAE,MAA6B,GAClC,OAAO,CAAC,gBAAgB,CAAC,CAoB3B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jmanuelcorral/openteam",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"packageManager": "bun@1.3.14",
|
|
5
5
|
"description": "Cost-aware, local-first routing plugin for opencode with cheapest-capable frontier fallback and multi-agent orchestration.",
|
|
6
6
|
"license": "MIT",
|