mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-11 19:47:12 +03:00
Add ruff linter/formatter with pre-commit hooks, pytest-cov with 60% coverage threshold, CODEOWNERS, Dependabot for pip/GHA updates, and .env.example. Auto-fix existing ruff violations across eval_runner/ and scripts/. 10 agent-readiness criteria resolved: lint_config, formatter, pre_commit_hooks, naming_consistency, dead_code_detection, test_coverage_thresholds, test_performance_tracking, codeowners, dependency_update_automation, env_template. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
106 lines
2.4 KiB
Plaintext
106 lines
2.4 KiB
Plaintext
# ─── Secrets & Configuration ──────────────────────────────────
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.env
|
|
.envrc
|
|
*.pem
|
|
*.key
|
|
*.cert
|
|
*.crt
|
|
*.p12
|
|
*.pfx
|
|
*.secret
|
|
secrets/
|
|
credentials/
|
|
*.credentials
|
|
*.token
|
|
*.password
|
|
*.auth
|
|
*.oauth
|
|
|
|
# ─── Hermes Agent ─────────────────────────────────────────────
|
|
.hermes/
|
|
hermes_config.yaml
|
|
hermes_config.yml
|
|
config.yaml
|
|
config.yml
|
|
hermes.env
|
|
cashew.json
|
|
cashew-brain/
|
|
|
|
# ─── Python ───────────────────────────────────────────────────
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
*.whl
|
|
venv/
|
|
.venv/
|
|
virtualenv/
|
|
.uv/
|
|
.python-version
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# ─── macOS ────────────────────────────────────────────────────
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
|
|
# ─── Editors & IDEs ───────────────────────────────────────────
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vim/
|
|
.vimrc
|
|
.notes
|
|
.tags
|
|
.todo
|
|
|
|
# ─── Node / JS ────────────────────────────────────────────────
|
|
node_modules/
|
|
.pnpm-store/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# ─── Build Artifacts ──────────────────────────────────────────
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|
|
*.orig
|
|
*.patch
|
|
*.diff
|
|
|
|
# ─── Git / Repo ───────────────────────────────────────────────
|
|
*.orig
|
|
.git-rewrite/
|
|
|
|
# ─── System ───────────────────────────────────────────────────
|
|
Thumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
*.lnk
|
|
graphify-out/
|
|
|
|
# Local life-coach operator fallback (external host-owned storage is canonical)
|
|
life-coach/local/
|