trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
17 lines • 731 B
TypeScript
/**
* TrellisVCS CLI
*
* Commands:
* init Initialize a new TrellisVCS repository
* status Show current repository status
* log Show operation history
* watch Start file watcher (foreground)
* lane Agent lanes — isolated op journals
* files List tracked files
* import Import from a Git repository
*/
export type IdeType = 'cursor' | 'devin' | 'claude' | 'copilot' | 'codex' | 'gemini' | 'none';
export type WorkspaceFootprint = 'minimal' | 'standard' | 'full';
export type FrameworkType = 'react' | 'vue' | 'svelte' | 'next' | 'nuxt' | 'remotion' | 'expo' | 'bun' | 'node' | 'cli' | 'library' | 'animation' | 'games' | 'none';
//# sourceMappingURL=index.d.ts.map