@twinklerg/coden 0.1.4 → 0.1.6
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/README.md +45 -5
- package/dist/index.js +338 -175
- package/dist/plugin/index.d.ts +6 -0
- package/dist/plugin/index.js +1 -1
- package/package.json +3 -2
package/dist/plugin/index.d.ts
CHANGED
|
@@ -8,6 +8,12 @@ export interface ToolResult {
|
|
|
8
8
|
export interface ToolContext {
|
|
9
9
|
workspace: string;
|
|
10
10
|
signal: AbortSignal;
|
|
11
|
+
/** Internal execution-time classification for structured file tools. */
|
|
12
|
+
structuredFilePath?: {
|
|
13
|
+
requested: string;
|
|
14
|
+
path: string;
|
|
15
|
+
scope: "inside" | "outside";
|
|
16
|
+
};
|
|
11
17
|
}
|
|
12
18
|
export interface ToolDefinition {
|
|
13
19
|
name: string;
|
package/dist/plugin/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
var b=1;export{b as CODEN_PLUGIN_API_VERSION};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twinklerg/coden",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "A minimal event-driven coding agent",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"commander": "^14.0.0",
|
|
35
35
|
"marked": "^18.0.11",
|
|
36
36
|
"openai": "^5.16.0",
|
|
37
|
-
"picocolors": "^1.1.1"
|
|
37
|
+
"picocolors": "^1.1.1",
|
|
38
|
+
"yaml": "^2.8.1"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
40
41
|
"@biomejs/biome": "^2.2.2",
|