- AGENTS.md: 新增 §20 工具脚本复用 / §21 分析结论复用 / §22 Flaky 门禁,更新文档配置表
- .pi/: 新增 settings.json、rules/guardrails.md、prompts/{debug,review,ship}-gym-manage.md
- .agents/: 新增 Hook 配置与 4 个 Hook 脚本(session-start/pre-agent-check/check-completeness/stop-check)
及 protocols/systematic-debugging.md(check-completeness 含接口链缺口检测)
- scripts/flaky-scan.sh: vitest shuffle 稳定性扫描(gym-manage-web)
- .gitignore: 追踪 AGENTS.md 与 .pi 配置,忽略运行时缓存(todos/taskflows-runs/tokenomy/sessions)
168 lines
2.0 KiB
Plaintext
168 lines
2.0 KiB
Plaintext
# Java
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
*.nar
|
|
hs_err_pid*
|
|
replay_pid*
|
|
|
|
# Maven
|
|
target/
|
|
pom.xml.tag
|
|
pom.xml.releaseBackup
|
|
pom.xml.versionsBackup
|
|
pom.xml.next
|
|
release.properties
|
|
dependency-reduced-pom.xml
|
|
buildNumber.properties
|
|
.mvn/timing.properties
|
|
.mvn/wrapper/maven-wrapper.jar
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
out/
|
|
*.tsbuildinfo
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.*.local
|
|
|
|
# IDE - IntelliJ IDEA
|
|
.idea/
|
|
*.iws
|
|
*.iml
|
|
*.ipr
|
|
out/
|
|
|
|
# IDE - Eclipse
|
|
.settings/
|
|
.classpath
|
|
.project
|
|
.metadata/
|
|
bin/
|
|
tmp/
|
|
|
|
# IDE - VS Code
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
*.code-workspace
|
|
|
|
# IDE - NetBeans
|
|
nbproject/private/
|
|
nbbuild/
|
|
nbdist/
|
|
nbactions.xml
|
|
nb-configuration.xml
|
|
|
|
# OS - macOS
|
|
.DS_Store
|
|
|
|
# 测试指标与看板
|
|
target/test-metrics/
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
|
|
# OS - Windows
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# OS - Linux
|
|
*~
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
/log/
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
test-results/
|
|
test-output/
|
|
*.lcov
|
|
|
|
# Allure
|
|
allure-report/
|
|
allure-results/
|
|
|
|
# Playwright
|
|
playwright-report/
|
|
playwright/.cache/
|
|
test-results/
|
|
e2e/debug/
|
|
debug-*.png
|
|
|
|
# Temporary files
|
|
*.swp
|
|
*.swo
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.cache
|
|
|
|
# Package files
|
|
*.7z
|
|
*.dmg
|
|
*.gz
|
|
*.iso
|
|
*.jar
|
|
*.rar
|
|
*.tar
|
|
*.zip
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.h2.db
|
|
|
|
# Spring Boot
|
|
spring-shell.log
|
|
|
|
# Application specific
|
|
novalon-manage-api/manage-app/backend.log
|
|
|
|
# docs (except superpowers specs and plans)
|
|
docs/*
|
|
!docs/superpowers/
|
|
docs/superpowers/*
|
|
!docs/superpowers/specs/
|
|
!docs/superpowers/plans/
|
|
|
|
# .trae
|
|
.trae/
|
|
|
|
# Agent 行为规则与配置(参考 novavis 模式:AGENTS.md / .agents 入库)
|
|
# .pi 配置文件(settings.json / rules / prompts)入库,运行时缓存忽略
|
|
.pi/todos/
|
|
.pi/taskflows/runs/
|
|
.pi/tokenomy-cache/
|
|
.pi/tokenomy-stats.json
|
|
sessions/
|
|
.agents/.suppress-hooks
|
|
.agents/skills/
|
|
|
|
# dogfood
|
|
dogfood-output/ |