Documentation
¶
Overview ¶
Package dir defines directory path constants used throughout the application.
Index ¶
Constants ¶
View Source
const ( // Archive is the subdirectory for archived tasks within .context/. Archive = "archive" // Claude is the Claude Code configuration directory in the project root. Claude = ".claude" // Context is the default context directory name. Context = ".context" // HooksMessages is the subdirectory path for hook message overrides within .context/. HooksMessages = "hooks/messages" // Ideas is the project-root directory for early-stage ideas and explorations. Ideas = "ideas" // Journal is the subdirectory for journal entries within .context/. Journal = "journal" // JournalObsidian is the Obsidian export of journal entries within .context/. JournalObsidian = "journal-obsidian" // JournalSite is the journal static site output directory within .context/. JournalSite = "journal-site" // Logs is the subdirectory name for log files within the context directory. Logs = "logs" // Memory is the subdirectory for memory bridge files within .context/. Memory = "memory" // MemoryArchive is the archive subdirectory within .context/memory/. MemoryArchive = "memory/archive" // Projects is the projects subdirectory within .claude/. Projects = "projects" // Prompts is the subdirectory for prompt templates within .context/. Prompts = "prompts" // Sessions is the subdirectory for session summaries within .context/. Sessions = "sessions" // Specs is the project-root directory for formalized plans and feature specs. Specs = "specs" // State is the subdirectory for project-scoped runtime state within .context/. State = "state" // Templates is the subdirectory for entry templates within .context/. Templates = "templates" // CtxData is the user-level ctx data directory (~/.ctx/). CtxData = ".ctx" )
Directory path constants used throughout the application.
View Source
const ( // JournalDocs is the docs subdirectory in the generated site. JournalDocs = "docs" // JournTopics is the topics subdirectory in the generated site. JournTopics = "topics" // JournalFiles is the key files subdirectory in the generated site. JournalFiles = "files" // JournalTypes is the session types subdirectory in the generated site. JournalTypes = "types" )
Journal site output directories.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.