@context-forge/core 0.1.1 → 0.3.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.
Files changed (158) hide show
  1. package/README.md +12 -1
  2. package/dist/config/ConfigKeys.d.ts +9 -0
  3. package/dist/config/ConfigKeys.d.ts.map +1 -0
  4. package/dist/config/ConfigKeys.js +24 -0
  5. package/dist/config/ConfigKeys.js.map +1 -0
  6. package/dist/config/ConfigManager.d.ts +18 -0
  7. package/dist/config/ConfigManager.d.ts.map +1 -0
  8. package/dist/config/ConfigManager.js +129 -0
  9. package/dist/config/ConfigManager.js.map +1 -0
  10. package/dist/config/configPaths.d.ts +5 -0
  11. package/dist/config/configPaths.d.ts.map +1 -0
  12. package/dist/config/configPaths.js +11 -0
  13. package/dist/config/configPaths.js.map +1 -0
  14. package/dist/config/index.d.ts +4 -0
  15. package/dist/config/index.d.ts.map +1 -0
  16. package/dist/config/index.js +4 -0
  17. package/dist/config/index.js.map +1 -0
  18. package/dist/guides/GuideDetector.d.ts +20 -0
  19. package/dist/guides/GuideDetector.d.ts.map +1 -0
  20. package/dist/guides/GuideDetector.js +142 -0
  21. package/dist/guides/GuideDetector.js.map +1 -0
  22. package/dist/guides/GuideManager.d.ts +21 -0
  23. package/dist/guides/GuideManager.d.ts.map +1 -0
  24. package/dist/guides/GuideManager.js +88 -0
  25. package/dist/guides/GuideManager.js.map +1 -0
  26. package/dist/guides/gitExec.d.ts +15 -0
  27. package/dist/guides/gitExec.d.ts.map +1 -0
  28. package/dist/guides/gitExec.js +39 -0
  29. package/dist/guides/gitExec.js.map +1 -0
  30. package/dist/guides/index.d.ts +4 -0
  31. package/dist/guides/index.d.ts.map +1 -0
  32. package/dist/guides/index.js +5 -0
  33. package/dist/guides/index.js.map +1 -0
  34. package/dist/guides/strategies/CloneStrategy.d.ts +7 -0
  35. package/dist/guides/strategies/CloneStrategy.d.ts.map +1 -0
  36. package/dist/guides/strategies/CloneStrategy.js +80 -0
  37. package/dist/guides/strategies/CloneStrategy.js.map +1 -0
  38. package/dist/guides/strategies/SubmoduleStrategy.d.ts +7 -0
  39. package/dist/guides/strategies/SubmoduleStrategy.d.ts.map +1 -0
  40. package/dist/guides/strategies/SubmoduleStrategy.js +74 -0
  41. package/dist/guides/strategies/SubmoduleStrategy.js.map +1 -0
  42. package/dist/guides/strategies/TarballStrategy.d.ts +19 -0
  43. package/dist/guides/strategies/TarballStrategy.d.ts.map +1 -0
  44. package/dist/guides/strategies/TarballStrategy.js +118 -0
  45. package/dist/guides/strategies/TarballStrategy.js.map +1 -0
  46. package/dist/guides/types.d.ts +44 -0
  47. package/dist/guides/types.d.ts.map +1 -0
  48. package/dist/guides/types.js +7 -0
  49. package/dist/guides/types.js.map +1 -0
  50. package/dist/index.d.ts +3 -0
  51. package/dist/index.d.ts.map +1 -1
  52. package/dist/index.js +4 -0
  53. package/dist/index.js.map +1 -1
  54. package/dist/introspection/ArtifactIntrospector.d.ts +20 -0
  55. package/dist/introspection/ArtifactIntrospector.d.ts.map +1 -0
  56. package/dist/introspection/ArtifactIntrospector.js +140 -0
  57. package/dist/introspection/ArtifactIntrospector.js.map +1 -0
  58. package/dist/introspection/FutureWorkCollector.d.ts +7 -0
  59. package/dist/introspection/FutureWorkCollector.d.ts.map +1 -0
  60. package/dist/introspection/FutureWorkCollector.js +116 -0
  61. package/dist/introspection/FutureWorkCollector.js.map +1 -0
  62. package/dist/introspection/ProjectModelBuilder.d.ts +32 -0
  63. package/dist/introspection/ProjectModelBuilder.d.ts.map +1 -0
  64. package/dist/introspection/ProjectModelBuilder.js +321 -0
  65. package/dist/introspection/ProjectModelBuilder.js.map +1 -0
  66. package/dist/introspection/index.d.ts +4 -0
  67. package/dist/introspection/index.d.ts.map +1 -0
  68. package/dist/introspection/index.js +5 -0
  69. package/dist/introspection/index.js.map +1 -0
  70. package/dist/introspection/interfaces.d.ts +18 -0
  71. package/dist/introspection/interfaces.d.ts.map +1 -0
  72. package/dist/introspection/interfaces.js +2 -0
  73. package/dist/introspection/interfaces.js.map +1 -0
  74. package/dist/introspection/parsers/documentDetector.d.ts +12 -0
  75. package/dist/introspection/parsers/documentDetector.d.ts.map +1 -0
  76. package/dist/introspection/parsers/documentDetector.js +66 -0
  77. package/dist/introspection/parsers/documentDetector.js.map +1 -0
  78. package/dist/introspection/parsers/frontmatterParser.d.ts +8 -0
  79. package/dist/introspection/parsers/frontmatterParser.d.ts.map +1 -0
  80. package/dist/introspection/parsers/frontmatterParser.js +43 -0
  81. package/dist/introspection/parsers/frontmatterParser.js.map +1 -0
  82. package/dist/introspection/parsers/futureWorkParser.d.ts +8 -0
  83. package/dist/introspection/parsers/futureWorkParser.d.ts.map +1 -0
  84. package/dist/introspection/parsers/futureWorkParser.js +75 -0
  85. package/dist/introspection/parsers/futureWorkParser.js.map +1 -0
  86. package/dist/introspection/parsers/slicePlanParser.d.ts +8 -0
  87. package/dist/introspection/parsers/slicePlanParser.d.ts.map +1 -0
  88. package/dist/introspection/parsers/slicePlanParser.js +51 -0
  89. package/dist/introspection/parsers/slicePlanParser.js.map +1 -0
  90. package/dist/introspection/parsers/statusNormalizer.d.ts +4 -0
  91. package/dist/introspection/parsers/statusNormalizer.d.ts.map +1 -0
  92. package/dist/introspection/parsers/statusNormalizer.js +23 -0
  93. package/dist/introspection/parsers/statusNormalizer.js.map +1 -0
  94. package/dist/introspection/parsers/taskFileParser.d.ts +13 -0
  95. package/dist/introspection/parsers/taskFileParser.d.ts.map +1 -0
  96. package/dist/introspection/parsers/taskFileParser.js +66 -0
  97. package/dist/introspection/parsers/taskFileParser.js.map +1 -0
  98. package/dist/introspection/types.d.ts +178 -0
  99. package/dist/introspection/types.d.ts.map +1 -0
  100. package/dist/introspection/types.js +2 -0
  101. package/dist/introspection/types.js.map +1 -0
  102. package/dist/node.d.ts +11 -0
  103. package/dist/node.d.ts.map +1 -1
  104. package/dist/node.js +15 -0
  105. package/dist/node.js.map +1 -1
  106. package/dist/schema/projectSchema.d.ts +54 -0
  107. package/dist/schema/projectSchema.d.ts.map +1 -0
  108. package/dist/schema/projectSchema.js +131 -0
  109. package/dist/schema/projectSchema.js.map +1 -0
  110. package/dist/schema/resolveFileByIndex.d.ts +11 -0
  111. package/dist/schema/resolveFileByIndex.d.ts.map +1 -0
  112. package/dist/schema/resolveFileByIndex.js +53 -0
  113. package/dist/schema/resolveFileByIndex.js.map +1 -0
  114. package/dist/services/ContextGenerator.d.ts.map +1 -1
  115. package/dist/services/ContextGenerator.js +3 -5
  116. package/dist/services/ContextGenerator.js.map +1 -1
  117. package/dist/services/ContextIntegrator.d.ts.map +1 -1
  118. package/dist/services/ContextIntegrator.js +10 -14
  119. package/dist/services/ContextIntegrator.js.map +1 -1
  120. package/dist/services/ContextTemplateEngine.d.ts.map +1 -1
  121. package/dist/services/ContextTemplateEngine.js +8 -21
  122. package/dist/services/ContextTemplateEngine.js.map +1 -1
  123. package/dist/services/CoreServiceFactory.d.ts +3 -0
  124. package/dist/services/CoreServiceFactory.d.ts.map +1 -1
  125. package/dist/services/CoreServiceFactory.js +19 -1
  126. package/dist/services/CoreServiceFactory.js.map +1 -1
  127. package/dist/services/ProjectPathService.d.ts +1 -1
  128. package/dist/services/ProjectPathService.d.ts.map +1 -1
  129. package/dist/services/ProjectPathService.js +2 -4
  130. package/dist/services/ProjectPathService.js.map +1 -1
  131. package/dist/services/SectionBuilder.d.ts +0 -4
  132. package/dist/services/SectionBuilder.d.ts.map +1 -1
  133. package/dist/services/SectionBuilder.js +8 -35
  134. package/dist/services/SectionBuilder.js.map +1 -1
  135. package/dist/services/SystemPromptParser.d.ts +1 -2
  136. package/dist/services/SystemPromptParser.d.ts.map +1 -1
  137. package/dist/services/SystemPromptParser.js +3 -14
  138. package/dist/services/SystemPromptParser.js.map +1 -1
  139. package/dist/services/TemplateProcessor.d.ts.map +1 -1
  140. package/dist/services/TemplateProcessor.js +12 -11
  141. package/dist/services/TemplateProcessor.js.map +1 -1
  142. package/dist/services/constants.d.ts.map +1 -1
  143. package/dist/services/constants.js +0 -6
  144. package/dist/services/constants.js.map +1 -1
  145. package/dist/services/interfaces.d.ts +1 -1
  146. package/dist/services/interfaces.d.ts.map +1 -1
  147. package/dist/storage/FileProjectStore.d.ts.map +1 -1
  148. package/dist/storage/FileProjectStore.js +25 -8
  149. package/dist/storage/FileProjectStore.js.map +1 -1
  150. package/dist/types/context.d.ts +4 -6
  151. package/dist/types/context.d.ts.map +1 -1
  152. package/dist/types/project.d.ts +15 -11
  153. package/dist/types/project.d.ts.map +1 -1
  154. package/dist/types/sections.d.ts +0 -1
  155. package/dist/types/sections.d.ts.map +1 -1
  156. package/dist/types/sections.js +0 -1
  157. package/dist/types/sections.js.map +1 -1
  158. package/package.json +5 -2
@@ -5,20 +5,25 @@ export interface ProjectData {
5
5
  id: string;
6
6
  name: string;
7
7
  template: string;
8
- slice: string;
9
- taskFile: string;
8
+ fileSlice: string;
9
+ fileTasks: string;
10
10
  instruction: string;
11
11
  developmentPhase?: string;
12
12
  workType?: 'start' | 'continue';
13
- projectDate?: string;
14
- isMonorepo: boolean;
15
- isMonorepoEnabled?: boolean;
13
+ dateProject?: string;
16
14
  /** Absolute path to project root (contains project-documents/) */
17
15
  projectPath?: string;
16
+ /** Path to HLD document (relative to project root) */
17
+ fileHLD?: string;
18
+ /** Path to architecture document (relative to project root) */
19
+ fileArch?: string;
20
+ /** Path to current slice plan (relative to project root) */
21
+ fileSlicePlan?: string;
22
+ /** Path to project specification (relative to project root) */
23
+ fileSpec?: string;
18
24
  customData?: {
19
25
  recentEvents?: string;
20
26
  additionalNotes?: string;
21
- monorepoNote?: string;
22
27
  availableTools?: string;
23
28
  };
24
29
  createdAt: string;
@@ -28,21 +33,20 @@ export interface ProjectData {
28
33
  * Type for creating a new project (without auto-generated fields).
29
34
  * instruction, workType and customData are optional during creation and will get defaults.
30
35
  */
31
- export type CreateProjectData = Omit<ProjectData, 'id' | 'createdAt' | 'updatedAt' | 'instruction' | 'developmentPhase' | 'workType' | 'taskFile' | 'projectDate' | 'customData'> & {
36
+ export type CreateProjectData = Omit<ProjectData, 'id' | 'createdAt' | 'updatedAt' | 'instruction' | 'developmentPhase' | 'workType' | 'fileTasks' | 'dateProject' | 'customData'> & {
32
37
  instruction?: string;
33
38
  developmentPhase?: string;
34
39
  workType?: 'start' | 'continue';
35
- taskFile?: string;
36
- projectDate?: string;
40
+ fileTasks?: string;
41
+ dateProject?: string;
37
42
  customData?: {
38
43
  recentEvents?: string;
39
44
  additionalNotes?: string;
40
- monorepoNote?: string;
41
45
  availableTools?: string;
42
46
  };
43
47
  };
44
48
  /**
45
49
  * Type for updating an existing project (partial updates allowed)
46
50
  */
47
- export type UpdateProjectData = Partial<Pick<ProjectData, 'name' | 'template' | 'slice' | 'taskFile' | 'instruction' | 'developmentPhase' | 'workType' | 'projectDate' | 'isMonorepo' | 'isMonorepoEnabled' | 'projectPath' | 'customData'>>;
51
+ export type UpdateProjectData = Partial<Pick<ProjectData, 'name' | 'template' | 'fileSlice' | 'fileTasks' | 'instruction' | 'developmentPhase' | 'workType' | 'dateProject' | 'projectPath' | 'fileHLD' | 'fileArch' | 'fileSlicePlan' | 'fileSpec' | 'customData'>>;
48
52
  //# sourceMappingURL=project.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../src/types/project.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC;IAChC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,OAAO,CAAC;IACpB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,kEAAkE;IAClE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE;QACX,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,cAAc,CAAC,EAAE,MAAM,CAAC;KACzB,CAAC;IACF,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG,IAAI,CAClC,WAAW,EACX,IAAI,GAAG,WAAW,GAAG,WAAW,GAAG,aAAa,GAAG,kBAAkB,GAAG,UAAU,GAAG,UAAU,GAAG,aAAa,GAAG,YAAY,CAC/H,GAAG;IACF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC;IAChC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE;QACX,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,cAAc,CAAC,EAAE,MAAM,CAAC;KACzB,CAAC;CACH,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CACrC,IAAI,CACF,WAAW,EACT,MAAM,GACN,UAAU,GACV,OAAO,GACP,UAAU,GACV,aAAa,GACb,kBAAkB,GAClB,UAAU,GACV,aAAa,GACb,YAAY,GACZ,mBAAmB,GACnB,aAAa,GACb,YAAY,CACf,CACF,CAAC"}
1
+ {"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../src/types/project.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC;IAChC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kEAAkE;IAClE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,sDAAsD;IACtD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,+DAA+D;IAC/D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,4DAA4D;IAC5D,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,+DAA+D;IAC/D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE;QACX,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,cAAc,CAAC,EAAE,MAAM,CAAC;KACzB,CAAC;IACF,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG,IAAI,CAClC,WAAW,EACX,IAAI,GAAG,WAAW,GAAG,WAAW,GAAG,aAAa,GAAG,kBAAkB,GAAG,UAAU,GAAG,WAAW,GAAG,aAAa,GAAG,YAAY,CAChI,GAAG;IACF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE;QACX,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,cAAc,CAAC,EAAE,MAAM,CAAC;KACzB,CAAC;CACH,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CACrC,IAAI,CACF,WAAW,EACT,MAAM,GACN,UAAU,GACV,WAAW,GACX,WAAW,GACX,aAAa,GACb,kBAAkB,GAClB,UAAU,GACV,aAAa,GACb,aAAa,GACb,SAAS,GACT,UAAU,GACV,eAAe,GACf,UAAU,GACV,YAAY,CACf,CACF,CAAC"}
@@ -47,7 +47,6 @@ export declare const SectionKeys: {
47
47
  readonly PROJECT_INTRO: "project-intro";
48
48
  readonly CONTEXT_INIT: "context-init";
49
49
  readonly TOOLS_SECTION: "tools-section";
50
- readonly MONOREPO_SECTION: "monorepo-section";
51
50
  readonly CURRENT_EVENTS: "current-events";
52
51
  readonly INSTRUCTION_PROMPT: "instruction-prompt";
53
52
  readonly ADDITIONAL_NOTES: "additional-notes";
@@ -1 +1 @@
1
- {"version":3,"file":"sections.d.ts","sourceRoot":"","sources":["../../src/types/sections.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAEjD;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,wCAAwC;IACxC,GAAG,EAAE,MAAM,CAAC;IAEZ,6EAA6E;IAC7E,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,kEAAkE;IAClE,OAAO,EAAE,MAAM,CAAC;IAEhB,4DAA4D;IAC5D,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB,0DAA0D;IAC1D,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,OAAO,CAAC;IAE3C,8DAA8D;IAC9D,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,6CAA6C;IAC7C,QAAQ,EAAE,cAAc,EAAE,CAAC;IAE3B,4CAA4C;IAC5C,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;IAE9C,+BAA+B;IAC/B,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;CACvC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,wCAAwC;IACxC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAE/B,wCAAwC;IACxC,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,yDAAyD;IACzD,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,eAAO,MAAM,WAAW;;;;;;;;CAQd,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,OAAO,WAAW,CAAC,CAAC;AAEzE;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB"}
1
+ {"version":3,"file":"sections.d.ts","sourceRoot":"","sources":["../../src/types/sections.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAEjD;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,wCAAwC;IACxC,GAAG,EAAE,MAAM,CAAC;IAEZ,6EAA6E;IAC7E,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,kEAAkE;IAClE,OAAO,EAAE,MAAM,CAAC;IAEhB,4DAA4D;IAC5D,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB,0DAA0D;IAC1D,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,OAAO,CAAC;IAE3C,8DAA8D;IAC9D,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,6CAA6C;IAC7C,QAAQ,EAAE,cAAc,EAAE,CAAC;IAE3B,4CAA4C;IAC5C,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;IAE9C,+BAA+B;IAC/B,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;CACvC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,wCAAwC;IACxC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAE/B,wCAAwC;IACxC,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,yDAAyD;IACzD,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,OAAO,WAAW,CAAC,CAAC;AAEzE;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB"}
@@ -5,7 +5,6 @@ export const SectionKeys = {
5
5
  PROJECT_INTRO: 'project-intro',
6
6
  CONTEXT_INIT: 'context-init',
7
7
  TOOLS_SECTION: 'tools-section',
8
- MONOREPO_SECTION: 'monorepo-section',
9
8
  CURRENT_EVENTS: 'current-events',
10
9
  INSTRUCTION_PROMPT: 'instruction-prompt',
11
10
  ADDITIONAL_NOTES: 'additional-notes',
@@ -1 +1 @@
1
- {"version":3,"file":"sections.js","sourceRoot":"","sources":["../../src/types/sections.ts"],"names":[],"mappings":"AAuDA;;GAEG;AACH,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,cAAc;IAC5B,aAAa,EAAE,eAAe;IAC9B,gBAAgB,EAAE,kBAAkB;IACpC,cAAc,EAAE,gBAAgB;IAChC,kBAAkB,EAAE,oBAAoB;IACxC,gBAAgB,EAAE,kBAAkB;CAC5B,CAAC"}
1
+ {"version":3,"file":"sections.js","sourceRoot":"","sources":["../../src/types/sections.ts"],"names":[],"mappings":"AAuDA;;GAEG;AACH,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,cAAc;IAC5B,aAAa,EAAE,eAAe;IAC9B,cAAc,EAAE,gBAAgB;IAChC,kBAAkB,EAAE,oBAAoB;IACxC,gBAAgB,EAAE,kBAAkB;CAC5B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@context-forge/core",
3
- "version": "0.1.1",
3
+ "version": "0.3.0",
4
4
  "description": "Core context generation engine for Context Forge — template processing, project state, prompt assembly",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -40,11 +40,14 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^24.3.1",
43
+ "@types/tar": "^7.0.87",
43
44
  "typescript": "~5.8.3",
44
45
  "vitest": "^3.2.1"
45
46
  },
46
47
  "dependencies": {
47
- "env-paths": "^4.0.0"
48
+ "env-paths": "^4.0.0",
49
+ "smol-toml": "^1.6.0",
50
+ "tar": "^7.5.10"
48
51
  },
49
52
  "scripts": {
50
53
  "build": "tsc",