@artyfacts/claude 1.1.2 → 1.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/src/index.ts CHANGED
@@ -84,3 +84,20 @@ export {
84
84
  ArtyfactsListener,
85
85
  createListener,
86
86
  } from './listener';
87
+
88
+ // Context Fetcher - Types
89
+ export type {
90
+ TaskFullContext,
91
+ OrganizationContext,
92
+ ProjectContext,
93
+ ArtifactContext,
94
+ SectionContext,
95
+ ContextFetcherConfig,
96
+ } from './context';
97
+
98
+ // Context Fetcher - Functions
99
+ export {
100
+ ContextFetcher,
101
+ createContextFetcher,
102
+ buildPromptWithContext,
103
+ } from './context';