@first-tree-ai/context-tree 0.1.1 → 0.1.2
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/.agents/plugins/marketplace.json +19 -0
- package/.claude-plugin/marketplace.json +21 -0
- package/.claude-plugin/plugin.json +12 -0
- package/.codex-plugin/plugin.json +28 -0
- package/README.md +152 -79
- package/dist/cli/index.mjs +25841 -6
- package/dist/index.d.mts +11 -2
- package/dist/index.mjs +1087 -2
- package/dist/{schemas-DyQ0V9Z3.mjs → schemas-BWM6Q6iz.mjs} +75 -6
- package/dist/{schemas-BZkU14CI.d.mts → schemas-C4bs-FkC.d.mts} +115 -3
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/docs/specification.md +58 -23
- package/examples/basic/NODE.md +0 -2
- package/hooks/hooks.json +26 -0
- package/hooks/session-start.mjs +64 -0
- package/package.json +10 -4
- package/plugin.json +14 -0
- package/policy/context-tree-policy.md +2 -0
- package/skills/context-tree-init/SKILL.md +11 -10
- package/skills/context-tree-init/scripts/context-tree.mjs +41 -0
- package/skills/context-tree-link/SKILL.md +45 -0
- package/skills/context-tree-link/agents/openai.yaml +4 -0
- package/skills/context-tree-link/scripts/context-tree.mjs +41 -0
- package/skills/context-tree-read/SKILL.md +27 -25
- package/skills/context-tree-read/agents/openai.yaml +1 -1
- package/skills/context-tree-read/scripts/context-tree.mjs +41 -0
- package/skills/context-tree-write/SKILL.md +53 -35
- package/skills/context-tree-write/agents/openai.yaml +1 -1
- package/skills/context-tree-write/scripts/context-tree.mjs +41 -0
- package/templates/AGENTS.md +66 -0
- package/dist/src-DJZoQVCF.mjs +0 -619
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
import { c as
|
|
1
|
+
import { b as ScaffoldTreeResult, c as ContextTreeDiffResult, d as ContextTreePolicy, g as ContextTreeRefreshResult, h as ContextTreeReadResult, u as ContextTreeLinkResult, v as ContextTreeStageResult, w as VerifyTreeReport } from "./schemas-C4bs-FkC.mjs";
|
|
2
2
|
|
|
3
|
+
//#region src/core/links.d.ts
|
|
4
|
+
declare function linkProject(projectPath: string, treePath: string): ContextTreeLinkResult;
|
|
5
|
+
declare function resolveLink(projectPath: string): ContextTreeLinkResult;
|
|
6
|
+
//#endregion
|
|
7
|
+
//#region src/core/live.d.ts
|
|
8
|
+
declare function refreshProject(projectPath: string): ContextTreeRefreshResult;
|
|
9
|
+
declare function stageContextWrite(projectPath: string): ContextTreeStageResult;
|
|
10
|
+
declare function inspectContextTreeDiff(treePath: string, base?: string): ContextTreeDiffResult;
|
|
11
|
+
//#endregion
|
|
3
12
|
//#region src/core/policy.d.ts
|
|
4
13
|
declare function readContextTreePolicy(): ContextTreePolicy;
|
|
5
14
|
//#endregion
|
|
@@ -16,4 +25,4 @@ declare function scaffoldTree(options: ScaffoldTreeOptions): ScaffoldTreeResult;
|
|
|
16
25
|
//#region src/core/verify.d.ts
|
|
17
26
|
declare function verifyTree(treePath: string): VerifyTreeReport;
|
|
18
27
|
//#endregion
|
|
19
|
-
export { type ScaffoldTreeOptions, readContextTreePolicy, readTree, scaffoldTree, verifyTree };
|
|
28
|
+
export { type ScaffoldTreeOptions, inspectContextTreeDiff, linkProject, readContextTreePolicy, readTree, refreshProject, resolveLink, scaffoldTree, stageContextWrite, verifyTree };
|