Initial structure for the 总助Claw (Vega) config repo. The repo is the single source of truth for Vega's manageable content: - prompts/ system prompt, persona, voice - skills/ reusable skill definitions (Markdown + frontmatter) - tools/ MCP servers and custom scripts Vega calls - autopilots/ scheduled / triggered automations (mirrors multica autopilot) - docs/ design decisions, runbooks README documents scope, conventions (issues live in Multica, content changes go via PR), and a near-term roadmap. .gitignore covers OS, editor, env, Python, and Node noise. All directories use .gitkeep placeholders.
44 lines
356 B
Plaintext
44 lines
356 B
Plaintext
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editors
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
.next/
|
|
.turbo/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# Misc
|
|
.cache/
|
|
coverage/
|
|
*.tmp
|