12 lines
539 B
TypeScript
12 lines
539 B
TypeScript
export const NANOCLAW_DIR = '.nanoclaw';
|
|
export const STATE_FILE = 'state.yaml';
|
|
export const BASE_DIR = '.nanoclaw/base';
|
|
export const BACKUP_DIR = '.nanoclaw/backup';
|
|
export const LOCK_FILE = '.nanoclaw/lock';
|
|
export const CUSTOM_DIR = '.nanoclaw/custom';
|
|
export const SKILLS_SCHEMA_VERSION = '0.1.0';
|
|
|
|
// Top-level paths to include in base snapshot and upstream extraction.
|
|
// Add new entries here when new root-level directories/files need tracking.
|
|
export const BASE_INCLUDES = ['src/', 'package.json', '.env.example', 'container/'];
|