oh-my-opencode-serverlocal 0.1.3 → 0.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.
Files changed (2) hide show
  1. package/dist/index.js +11 -11
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -19396,17 +19396,17 @@ var AGENT_DESCRIPTIONS = {
19396
19396
  - **Delegate when:** For implementation work, think and triage first. If the change is non-trivial or multi-file, hand bounded execution to @fixer • Parallelization benefits: Task involves multiple folders and multiple files modification, scoping work per folder and spawning parallel @fixers for each folder.
19397
19397
  - **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 • Requires design taste, visual hierarchy, interaction polish, responsive layout decisions, animation/motion, component feel, or UI copy/design trade-offs
19398
19398
  - **Rule of thumb:** Headless/mechanical implementation → @fixer. User-visible design or polish → @designer. If @designer already set direction, @fixer may only do bounded mechanical follow-up that preserves that design exactly.`,
19399
- council: `@council
19400
- - Lane: High-stakes multi-model decision support
19401
- - Role: Multi-LLM consensus engine that runs several councillors, synthesizes their views, and returns a structured council report.
19402
- - Permissions: Read files
19403
- - Stats: 3x slower than orchestrator, 3x or more cost of orchestrator
19404
- - Capabilities: Runs multiple models in parallel, compares their answers, resolves disagreements, and produces a final synthesized answer plus councillor details and consensus summary.
19405
- - **Delegate when:** Critical decisions need multiple independent perspectivesHigh-stakes architectural/security/data-integrity choicesAmbiguous problems where disagreement is useful signal You want confidence beyond a single modelThe user explicitly asks for council/consensus/multiple opinions.
19406
- - **Don't delegate when:** Straightforward tasks you're confident about Speed matters more than confidenceRoutine implementation/debugging • A single specialist is clearly the right tool You only need current docs/search/code review rather than multi-model consensus.
19407
- - **How to call:** Send the full question/task and relevant context. Be explicit about what decision, trade-off, or answer the council should resolve. Do not ask council to do routine code edits.
19408
- - **Result handling:** Council returns a structured response that may include: synthesized Council Response, individual Councillor Details, and Council Summary/confidence. Preserve that structure when the user asked for council output. Do not pretend the council only returned a final answer. If you need to act on the council result, first briefly state the council's recommendation, then proceed.
19409
- - **Rule of thumb:** Need second/third opinions from different models? → @council. Need one expert lane? → use the specialist. Need final synthesis? → handle directly.`,
19399
+ roundtable: `roundtable tool
19400
+ - Lane: Multi-model adversarial debate with consensus scoring
19401
+ - Role: Launches a structured round-table debate with 3 independent debaters (skeptic, pragmatist, architect) and a critic. Runs multiple rounds of cross-examination. Debunkers see each other's arguments and must explicitly address weaknesses. Critic scores consensus and quality after each round. Returns a 5-section council report with dissents, debate summary, and open questions.
19402
+ - Permissions: Read files (runs independently — no user interaction)
19403
+ - Stats: 1-5 rounds, 60-260s, tokens cost roughly proportional to rounds
19404
+ - Capabilities: Real cross-examination (not parallel/parallel synthesis), consensus-based early stop, divergence detection, quality threshold gating. Produces honest dissent section.
19405
+ - **Delegate when:** Critical architectural decisions Tech stack trade-offsSecurity/safety decisionsCost analysis of changes"Should I use X or Y?" questionsMigrations or deprecations Designers vs Engineers conflicts
19406
+ - **Don't delegate when:** Simple yes/no answersFeatures where speed > thoroughnessSingle opinion is obviousRoutine code edits
19407
+ - **How to call:** Call the \`roundtable\` tool with \`{ query: "Specific question with enough context", maxRounds: optional, debug: optional }\`. Provide real constraints (e.g., hardware specs, budget, current tech stack). The more context, the better the debate.
19408
+ - **Result handling:** The tool returns a structured report with Council Decision (verdict), Dissent (where disagreement persisted), Debate Summary (rounds, scores), Open Questions, and Models Used. Present all 5 sections unless the user asked for a summary. If the dissent is strong, note it explicitly.
19409
+ - **Rule of thumb:** Need independent perspectives that actually challenge each other? → roundtable tool. Need one confidence estimate? → ask @oracle. Need to quickly ship? → make the call yourself.`,
19410
19410
  observer: `@observer
19411
19411
  - Lane: Visual/media analysis isolated from orchestrator context
19412
19412
  - Role: Visual analysis specialist for images, PDFs, and diagrams
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode-serverlocal",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Custom serverlocal fork of oh-my-opencode-slim — fully owned, custom prompts + commands, dist synced via opencode-dotfiles",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",