oh-my-opencode-slim 2.0.0-beta.3 → 2.0.0-beta.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.
@@ -1,4 +1,4 @@
1
- import type { AgentConfig } from '@opencode-ai/sdk/v2';
1
+ import type { AgentConfig } from "@opencode-ai/sdk/v2";
2
2
  export interface AgentDefinition {
3
3
  name: string;
4
4
  displayName?: string;
package/dist/index.js CHANGED
@@ -18972,14 +18972,14 @@ var AGENT_DESCRIPTIONS = {
18972
18972
  - **Delegate when:** Need to discover what exists before planning • Parallel searches speed discovery • Need summarized map vs full contents • Broad/uncertain scope
18973
18973
  - **Don't delegate when:** Know the path and need actual content • Need full file anyway • Single specific lookup • About to edit the file`,
18974
18974
  librarian: `@librarian
18975
- - Lane: External knowledge and library research
18976
- - Role: Authoritative source for current library docs and API references
18975
+ - Lane: External knowledge and library research, fast web research
18976
+ - Role: Authoritative source for current library docs and API references, web information retrieval
18977
18977
  - Permissions: External docs/search MCPs; no file edits
18978
18978
  - Stats: 10x better finding up-to-date library docs than orchestrator, 1/2 cost of orchestrator
18979
18979
  - Capabilities: Fetches latest official docs, examples, API signatures, version-specific behavior via grep_app MCP
18980
- - **Delegate when:** Libraries with frequent API changes (React, Next.js, AI SDKs) • Complex APIs needing official examples (ORMs, auth) • Version-specific behavior matters • Unfamiliar library • Edge cases or advanced features • Nuanced best practices
18980
+ - **Delegate when:** Libraries with frequent API changes (React, Next.js, AI SDKs) • Complex APIs needing official examples (ORMs, auth) • Version-specific behavior matters • Unfamiliar library • Edge cases or advanced features • Nuanced best practices • Working on fixing tricky bug or problem and need latest web research information
18981
18981
  - **Don't delegate when:** Standard usage you're confident • Simple stable APIs • General programming knowledge • Info already in conversation • Built-in language features
18982
- - **Rule of thumb:** "How does this library work?" → @librarian. "How does programming work?" → answer directly.`,
18982
+ - **Rule of thumb:** "How does this library work?" → @librarian. "How does programming work?" → answer directly. How does others solve or workaround this tricky issue?" → @librarian.`,
18983
18983
  oracle: `@oracle
18984
18984
  - Lane: Architecture, risk, debugging strategy, and review
18985
18985
  - Role: Strategic advisor for high-stakes decisions and persistent problems, code reviewer
@@ -18990,23 +18990,24 @@ var AGENT_DESCRIPTIONS = {
18990
18990
  - **Don't delegate when:** Routine decisions you're confident about • First bug fix attempt • Straightforward trade-offs • Tactical "how" vs strategic "should" • Time-sensitive good-enough decisions • Quick research/testing can answer
18991
18991
  - **Rule of thumb:** Need senior architect review? → @oracle. Need code review or simplification? → @oracle. Routine coordination or final synthesis? → handle directly.`,
18992
18992
  designer: `@designer
18993
- - Lane: User-facing UI/UX design, polish, and review
18993
+ - Lane: User-facing UI/UX design related edits, polish, and review
18994
18994
  - Role: UI/UX specialist for intentional, polished experiences
18995
18995
  - Permissions: Read/write files
18996
18996
  - Stats: 10x better UI/UX than orchestrator
18997
18997
  - Capabilities: Visual relevant edits, interactions, responsive layouts, design systems with aesthetic intent, deep UI/UX knowledge.
18998
+ - Weakness: copywriting, needs Orchestrator control, dictation, reviews
18998
18999
  - **Delegate when:** User-facing interfaces needing polish • Responsive layouts • UX-critical components (forms, nav, dashboards) • Visual consistency systems • Animations/micro-interactions • Landing/marketing pages • Refining functional→delightful • Reviewing existing UI/UX quality
18999
19000
  - **Don't delegate when:** Backend/logic with no visual • Quick prototypes where design doesn't matter yet
19000
19001
  - **Rule of thumb:** Users see it and polish matters? → @designer. Headless/functional implementation? → schedule @fixer.`,
19001
19002
  fixer: `@fixer
19002
- - Lane: Bounded implementation and test execution
19003
- - Role: Fast execution specialist for well-defined tasks, which empowers orchestrator with parallel, speedy executions
19003
+ - Lane: Bounded implementation and test execution.
19004
+ - Role: Fast execution specialist for well-defined tasks.
19004
19005
  - Permissions: Read/write files
19005
19006
  - Stats: 2x faster code edits, 1/2 cost of orchestrator, 0.8x quality of orchestrator
19006
19007
  - Tools/Constraints: Execution-focused—no research, no architectural decisions
19007
19008
  - **Delegate when:** For implementation work, think and triage first. If the change is non-trivial or multi-file, hand bounded execution to @fixer • Writing or updating tests • Tasks that touch test files, fixtures, mocks, or test helpers. Parallelization benefits: Task involves multiple folders and multiple files modificaiton, scoping work per folder and spawning parallel @fixers for each folder.
19008
19009
  - **Don't delegate when:** Needs discovery/research/decisions • Single small change (<20 lines, one file) • Unclear requirements needing iteration • Explaining to fixer > doing • Tight integration with your current work • Sequential dependencies
19009
- - **Rule of thumb:** If implementation or tests are needed, schedule @fixer with clear scope. Bigger or lots of edits should be split by ownership and dispatched as parallel background fixer lanes when safe.`,
19010
+ - **Rule of thumb:** Implementation are needed, schedule @fixer with clear scope. Bigger or lots of edits should be split by ownership and dispatched as parallel background fixer lanes when safe.`,
19010
19011
  council: `@council
19011
19012
  - Lane: High-stakes multi-model decision support
19012
19013
  - Role: Multi-LLM consensus engine that runs several councillors, synthesizes their views, and returns a structured council report.
@@ -19032,7 +19033,7 @@ var AGENT_DESCRIPTIONS = {
19032
19033
  var VALIDATION_ROUTING = [
19033
19034
  "- Route UI/UX validation and review to @designer",
19034
19035
  "- Route code review, simplification, maintainability review, and YAGNI checks to @oracle",
19035
- "- Route test writing, test updates, and changes touching test files to @fixer",
19036
+ "- Route implementation to @fixer or multiple @fixer instances for maximum parallel execution",
19036
19037
  "- Route visual/media analysis and interpretation to @observer",
19037
19038
  "- If a request spans multiple lanes, delegate only the lanes that add clear value"
19038
19039
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode-slim",
3
- "version": "2.0.0-beta.3",
3
+ "version": "2.0.0-beta.4",
4
4
  "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",