oh-my-opencode 2.1.7 → 2.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode",
3
- "version": "2.1.7",
3
+ "version": "2.2.1",
4
4
  "description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -59,12 +59,8 @@
59
59
  "devDependencies": {
60
60
  "@types/picomatch": "^3.0.2",
61
61
  "bun-types": "latest",
62
- "oh-my-opencode": "^0.1.30",
63
62
  "typescript": "^5.7.3"
64
63
  },
65
- "peerDependencies": {
66
- "bun": ">=1.0.0"
67
- },
68
64
  "trustedDependencies": [
69
65
  "@ast-grep/cli",
70
66
  "@ast-grep/napi",
@@ -1 +0,0 @@
1
- export declare function detectInterrupt(error: unknown): boolean;
@@ -1,7 +0,0 @@
1
- export interface SessionErrorState {
2
- hasError: boolean;
3
- errorMessage?: string;
4
- }
5
- export interface SessionInterruptState {
6
- interrupted: boolean;
7
- }
@@ -1 +0,0 @@
1
- export * from "./title";
@@ -1,13 +0,0 @@
1
- export type SessionStatus = "ready" | "processing" | "tool" | "error" | "idle";
2
- export interface TitleContext {
3
- sessionId: string;
4
- sessionTitle?: string;
5
- directory?: string;
6
- status?: SessionStatus;
7
- currentTool?: string;
8
- customSuffix?: string;
9
- }
10
- export declare function formatTerminalTitle(ctx: TitleContext): string;
11
- export declare function setTerminalTitle(title: string): void;
12
- export declare function updateTerminalTitle(ctx: TitleContext): void;
13
- export declare function resetTerminalTitle(): void;