mirror of
https://github.com/msitarzewski/agency-agents
synced 2026-04-25 11:18:05 +00:00
- Add convert_qwen() to scripts/convert.sh for generating Qwen SubAgent .md files - Add install_qwen() to scripts/install.sh for installing to .qwen/agents/ (project-scoped) - Add qwen detection, tool label, and install cases - Update README.md with Qwen in supported tools table + usage section - Add integrations/qwen/agents/ to .gitignore + create .gitkeep - Add Qwen Code compatibility note to CONTRIBUTING.md - Preserve tools: field in Qwen output when present in source agents - Fix interactive installer to show dynamic [1-N] toggle range - Update README roadmap checklist to include Qwen Code Qwen SubAgents use minimal YAML frontmatter (name, description) with optional tools: field preserved from source. Body content passes through unchanged. Tested with 120 agents — all convert and install successfully.
79 lines
1.1 KiB
Plaintext
79 lines
1.1 KiB
Plaintext
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
|
|
# Thumbnails
|
|
Thumbs.db
|
|
|
|
# Editor directories and files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Node.js (if adding web tools later)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Python (if adding scripts)
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
*.lcov
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Personal notes and scratch files
|
|
scratch/
|
|
notes/
|
|
TODO.md
|
|
NOTES.md
|
|
|
|
# Generated integration files — run scripts/convert.sh to regenerate locally
|
|
# The scripts/ and integrations/*/README.md files ARE committed; only generated
|
|
# agent/skill files are excluded.
|
|
integrations/antigravity/agency-*/
|
|
integrations/gemini-cli/skills/
|
|
integrations/gemini-cli/gemini-extension.json
|
|
integrations/opencode/agents/
|
|
integrations/cursor/rules/
|
|
integrations/aider/CONVENTIONS.md
|
|
integrations/windsurf/.windsurfrules
|
|
integrations/openclaw/*
|
|
integrations/qwen/agents/
|
|
!integrations/openclaw/README.md
|