/** * Trellis workflow templates * * These are GENERIC templates for user projects. * Do NOT use Trellis project's own .trellis/ directory (which may be customized). * * Directory structure: * trellis/ * ├── scripts/ * │ ├── __init__.py * │ ├── common/ # Shared utilities (Python) * │ └── *.py # Main scripts (Python) * ├── scripts-shell-archive/ # Archived shell scripts (for reference) * ├── workflow.md # Workflow guide * ├── config.yaml # Trellis configuration * └── gitignore.txt # .gitignore content */ export declare const scriptsInit: string; export declare const commonInit: string; export declare const commonPaths: string; export declare const commonDeveloper: string; export declare const commonGitContext: string; export declare const commonTaskQueue: string; export declare const commonTaskUtils: string; export declare const commonActiveTask: string; export declare const commonCliAdapter: string; export declare const commonConfig: string; export declare const commonIo: string; export declare const commonLog: string; export declare const commonGit: string; export declare const commonTypes: string; export declare const commonTasks: string; export declare const commonTaskContext: string; export declare const commonTaskStore: string; export declare const commonSessionContext: string; export declare const commonPackagesContext: string; export declare const commonWorkflowPhase: string; export declare const commonTrellisConfig: string; export declare const commonSafeCommit: string; export declare const getDeveloperScript: string; export declare const initDeveloperScript: string; export declare const taskScript: string; export declare const getContextScript: string; export declare const addSessionScript: string; export declare const archiveSummaryHook: string; export declare const workflowMdTemplate: string; export declare const configYamlTemplate: string; export declare const gitignoreTemplate: string; /** * Get all script templates as a map of relative path to content */ export declare function getAllScripts(): Map; //# sourceMappingURL=index.d.ts.map