-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
36 lines (33 loc) · 1.04 KB
/
index.ts
File metadata and controls
36 lines (33 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* @ekolabs/claude-design-loop
*
* Public API. Per-repo `.design-loop.config.ts` files import `defineConfig`
* from here. Most callers use the CLI (`design-loop` — see README), but the
* same primitives are exported for programmatic use (e.g. CI / custom tooling).
*/
export {
defineConfig,
getDefaultDesignSystem,
getDesignSystems,
loadConfig,
} from './config.ts';
export type {
DesignLoopConfig,
DesignSystemRef,
Framework,
} from './config.ts';
export { runBrief } from './lib/brief.ts';
export { runPull } from './lib/pull.ts';
export { runApply } from './lib/apply.ts';
export { runVerify } from './lib/verify.ts';
export { runSubmit } from './lib/submit.ts';
export { runResume } from './lib/resume.ts';
export { runFetch } from './lib/fetch.ts';
export { runWizard } from './lib/wizard.ts';
export {
loginInteractive,
defaultAuthPaths,
listDesignSystems,
} from './lib/claude-design.ts';
export type { DiscoveredDesignSystem } from './lib/claude-design.ts';
export type { Adapter, DiscoveredRoute } from './adapters/types.ts';