pi-adaptive-thinking 0.1.1 → 0.2.0

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,16 +0,0 @@
1
- import { type AdaptiveThinkingConfig } from "./config";
2
- export type { AdaptiveThinkingConfig } from "./config";
3
- export type LoadConfigOptions = {
4
- cwd: string;
5
- homeDir?: string;
6
- };
7
- export type LoadConfigResult = {
8
- success: true;
9
- config: AdaptiveThinkingConfig;
10
- source?: string;
11
- } | {
12
- success: false;
13
- source: string;
14
- error: Error;
15
- };
16
- export declare const loadConfig: ({ cwd, homeDir, }: LoadConfigOptions) => Promise<LoadConfigResult>;
package/dist/config.d.ts DELETED
@@ -1,18 +0,0 @@
1
- import { Type, type Static } from "typebox";
2
- export declare const defaultSystemPrompt: string;
3
- export declare const configDefaults: {
4
- enabled: boolean;
5
- quiet: boolean;
6
- toolName: string;
7
- toolDescription: string;
8
- systemPrompt: string;
9
- };
10
- export declare const ConfigSchema: Type.TObject<{
11
- enabled: Type.TBoolean;
12
- quiet: Type.TBoolean;
13
- toolName: Type.TString;
14
- toolDescription: Type.TString;
15
- systemPrompt: Type.TString;
16
- }>;
17
- export type AdaptiveThinkingConfig = Static<typeof ConfigSchema>;
18
- export declare const parseConfig: (input: unknown) => AdaptiveThinkingConfig;
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
2
- export default function adaptiveThinking(pi: ExtensionAPI): void;