llm-docs-sync 1.0.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.
@@ -0,0 +1,24 @@
1
+ import { Effect } from "effect";
2
+ export interface DocSource {
3
+ readonly name: string;
4
+ readonly url: string;
5
+ }
6
+ export interface SyncResult {
7
+ readonly name: string;
8
+ readonly filePath: string;
9
+ readonly status: "success" | "failed";
10
+ }
11
+ export interface SyncConfig {
12
+ readonly sources: readonly DocSource[];
13
+ readonly outputDir: string;
14
+ readonly agentsFile?: string;
15
+ readonly projectRules?: readonly string[];
16
+ }
17
+ export declare const DEFAULT_SOURCES: readonly DocSource[];
18
+ export declare const DEFAULT_PROJECT_RULES: readonly string[];
19
+ declare const toFileName: (name: string) => string;
20
+ declare const createManifest: (results: readonly SyncResult[]) => readonly string[];
21
+ export declare const syncDocs: (config?: Partial<SyncConfig>) => Effect.Effect<void, never>;
22
+ export declare const runCLI: () => void;
23
+ export { toFileName, createManifest };
24
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,MAAM,EAA4B,MAAM,QAAQ,CAAC;AAE1D,MAAM,WAAW,SAAS;IACxB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,UAAU;IACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,MAAM,EAAE,SAAS,GAAG,QAAQ,CAAC;CACvC;AAED,MAAM,WAAW,UAAU;IACzB,QAAQ,CAAC,OAAO,EAAE,SAAS,SAAS,EAAE,CAAC;IACvC,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,YAAY,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CAC3C;AAED,eAAO,MAAM,eAAe,EAAE,SAAS,SAAS,EAKtC,CAAC;AAEX,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,EAKlD,CAAC;AAEF,QAAA,MAAM,UAAU,GAAI,MAAM,MAAM,KAAG,MACc,CAAC;AA0FlD,QAAA,MAAM,cAAc,GAAI,SAAS,SAAS,UAAU,EAAE,KAAG,SAAS,MAAM,EAGvE,CAAC;AAsBF,eAAO,MAAM,QAAQ,GACnB,SAAQ,OAAO,CAAC,UAAU,CAAM,KAC/B,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,CA0B3B,CAAC;AAEF,eAAO,MAAM,MAAM,YAElB,CAAC;AAEF,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,CAAC"}