mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 03:30:40 +00:00
- Add git diff capture after each run, saved as diff.patch
- Add session log collection from ~/.qwen/projects/{id}/chats/
- Store session logs in outputs/{run_id}/chats/ with original filename
- Add session_id field to track chat recording UUID
- Modify cwd in session logs to actual runner working directory
- Remove stdout_file/stderr_file from top-level, keep only in prompt_results
- Rename logs folder to openai-logs
- Add File Writer task example for testing file creation
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
68 lines
No EOL
1 KiB
Text
68 lines
No EOL
1 KiB
Text
# API keys and secrets
|
|
.env
|
|
.env~
|
|
|
|
# gemini-cli settings
|
|
# We want to keep the .gemini in the root of the repo and ignore any .gemini
|
|
# in subdirectories. In our root .gemini we want to allow for version control
|
|
# for subcommands.
|
|
**/.gemini/
|
|
!/.gemini/
|
|
.gemini/*
|
|
!.gemini/config.yaml
|
|
!.gemini/commands/
|
|
|
|
# Note: .gemini-clipboard/ is NOT in gitignore so Gemini can access pasted images
|
|
|
|
# Dependency directory
|
|
node_modules
|
|
bower_components
|
|
package-lock.json
|
|
|
|
# Editors
|
|
.idea
|
|
*.iml
|
|
.cursor
|
|
.qoder
|
|
|
|
# OS metadata
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# TypeScript build info files
|
|
*.tsbuildinfo
|
|
|
|
# Ignore built ts files
|
|
dist
|
|
|
|
# Docker folder to help skip auth refreshes
|
|
.docker
|
|
|
|
bundle
|
|
|
|
# Test report files
|
|
junit.xml
|
|
packages/*/coverage/
|
|
|
|
# Generated files
|
|
packages/cli/src/generated/
|
|
packages/core/src/generated/
|
|
.integration-tests/
|
|
packages/vscode-ide-companion/*.vsix
|
|
|
|
# Qwen Code Configs
|
|
.qwen/
|
|
logs/
|
|
# GHA credentials
|
|
gha-creds-*.json
|
|
|
|
# Log files
|
|
patch_output.log
|
|
|
|
# docs build
|
|
docs-site/.next
|
|
# content is a symlink to ../docs
|
|
docs-site/content
|
|
|
|
# python cache
|
|
__pycache__/ |