mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
- Added `resume-strategy.ts` to determine optimal resume approaches including native, prompt concatenation, and hybrid modes. - Introduced `determineResumeStrategy` function to evaluate various resume scenarios. - Created utility functions for building context prefixes and formatting outputs in plain, YAML, and JSON formats. - Added `session-content-parser.ts` to parse native CLI tool session files supporting Gemini/Qwen JSON and Codex JSONL formats. - Implemented parsing logic for different session formats, including error handling for invalid lines. - Provided functions to format conversations and extract user-assistant pairs from parsed sessions.
29 lines
349 B
Plaintext
29 lines
349 B
Plaintext
# History and temp files
|
|
.history
|
|
*.tmp
|
|
*.log
|
|
|
|
# Node modules
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Package files
|
|
*.tgz
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
.env
|
|
settings.local.json
|
|
.workflow
|
|
version.json
|
|
ref
|
|
COMMAND_FLOW_STANDARD.md
|
|
COMMAND_TEMPLATE_EXECUTOR.md
|
|
COMMAND_TEMPLATE_ORCHESTRATOR.md
|
|
*.pyc
|
|
.codexlens/
|
|
settings.json |