oh-my-opencode 3.1.10 → 3.1.11

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 (29) hide show
  1. package/dist/agents/sisyphus.d.ts +2 -0
  2. package/dist/cli/index.js +3560 -2329
  3. package/dist/config/schema.d.ts +14 -12
  4. package/dist/features/background-agent/manager.d.ts +1 -0
  5. package/dist/features/builtin-commands/templates/stop-continuation.d.ts +1 -0
  6. package/dist/features/builtin-commands/types.d.ts +1 -1
  7. package/dist/features/sisyphus-tasks/types.d.ts +3 -3
  8. package/dist/hooks/claude-code-hooks/transcript.d.ts +0 -4
  9. package/dist/hooks/directory-agents-injector/storage.d.ts +1 -3
  10. package/dist/hooks/directory-readme-injector/storage.d.ts +1 -3
  11. package/dist/hooks/index.d.ts +1 -1
  12. package/dist/hooks/session-notification-utils.d.ts +6 -6
  13. package/dist/hooks/stop-continuation-guard/index.d.ts +16 -0
  14. package/dist/hooks/think-mode/switcher.d.ts +12 -0
  15. package/dist/hooks/todo-continuation-enforcer.d.ts +2 -0
  16. package/dist/index.js +16324 -2834
  17. package/dist/shared/binary-downloader.d.ts +10 -0
  18. package/dist/shared/index.d.ts +2 -1
  19. package/dist/shared/model-resolution-pipeline.d.ts +24 -0
  20. package/dist/shared/opencode-version.d.ts +0 -2
  21. package/dist/shared/session-injected-paths.d.ts +10 -0
  22. package/dist/shared/snake-case.d.ts +1 -0
  23. package/package.json +8 -8
  24. package/dist/hooks/compaction-context-injector/index.d.ts +0 -8
  25. package/dist/hooks/directory-agents-injector/types.d.ts +0 -5
  26. package/dist/hooks/directory-readme-injector/types.d.ts +0 -5
  27. package/dist/shared/case-insensitive.d.ts +0 -24
  28. /package/dist/{hooks/compaction-context-injector/index.test.d.ts → features/builtin-commands/templates/stop-continuation.test.d.ts} +0 -0
  29. /package/dist/{shared/case-insensitive.test.d.ts → hooks/stop-continuation-guard/index.test.d.ts} +0 -0
@@ -1,4 +1,6 @@
1
1
  import type { AgentConfig } from "@opencode-ai/sdk";
2
+ import type { AgentPromptMetadata } from "./types";
3
+ export declare const SISYPHUS_PROMPT_METADATA: AgentPromptMetadata;
2
4
  import type { AvailableAgent, AvailableSkill, AvailableCategory } from "./dynamic-agent-prompt-builder";
3
5
  export declare function createSisyphusAgent(model: string, availableAgents?: AvailableAgent[], availableToolNames?: string[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[]): AgentConfig;
4
6
  export declare namespace createSisyphusAgent {