Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .agents/_TOC.md

This file was deleted.

6 changes: 0 additions & 6 deletions .agents/advanced-safety-rules.md

This file was deleted.

39 changes: 0 additions & 39 deletions .agents/coding-guidelines.md

This file was deleted.

6 changes: 0 additions & 6 deletions .agents/common-tasks.md

This file was deleted.

14 changes: 0 additions & 14 deletions .agents/documentation-guidelines.md

This file was deleted.

20 changes: 0 additions & 20 deletions .agents/documentation-tasks.md

This file was deleted.

1 change: 1 addition & 0 deletions .agents/guidelines
21 changes: 0 additions & 21 deletions .agents/project-structure-expectations.md

This file was deleted.

1 change: 1 addition & 0 deletions .agents/project.md
10 changes: 0 additions & 10 deletions .agents/quick-reference-card.md

This file was deleted.

3 changes: 0 additions & 3 deletions .agents/refactoring-guidelines.md

This file was deleted.

18 changes: 0 additions & 18 deletions .agents/running-builds.md

This file was deleted.

7 changes: 0 additions & 7 deletions .agents/safety-rules.md

This file was deleted.

1 change: 1 addition & 0 deletions .agents/scripts
1 change: 1 addition & 0 deletions .agents/shared
Submodule shared added at 2369ab
1 change: 1 addition & 0 deletions .agents/skills
8 changes: 0 additions & 8 deletions .agents/testing.md

This file was deleted.

30 changes: 0 additions & 30 deletions .agents/version-policy.md

This file was deleted.

1 change: 1 addition & 0 deletions .claude/agents
1 change: 1 addition & 0 deletions .claude/commands
106 changes: 106 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"plansDirectory": ".claude/plans",
"permissions": {
"allow": [
"Edit(version.gradle.kts)",
"Bash(./gradlew:*)",
"Bash(./config/gradlew:*)",
"Bash(git status:*)",
"Bash(git diff:*)",
"Bash(git log:*)",
"Bash(git show:*)",
"Bash(git branch:*)",
"Bash(git switch:*)",
"Bash(git checkout:*)",
"Bash(git add:*)",
"Bash(git restore:*)",
"Bash(git stash:*)",
"Bash(git fetch:*)",
"Bash(git push:*)",
"Bash(git rev-parse:*)",
"Bash(git ls-files:*)",
"Bash(git mv:*)",
"Bash(git submodule status:*)",
"Bash(ls:*)",
"Bash(cat:*)",
"Bash(head:*)",
"Bash(tail:*)",
"Bash(wc:*)",
"Bash(find:*)",
"Bash(rg:*)",
"Bash(grep:*)",
"Bash(mkdir:*)",
"Bash(touch:*)",
"Bash(python3 .agents/skills/update-copyright/scripts/update_copyright.py:*)",
"Bash(.agents/skills/version-bumped/scripts/version-bumped.sh)",
"Bash(./config/pull)",
"Bash(./config/migrate)",
"Skill(pre-pr)",
"Skill(pre-pr:*)"
],
"deny": [
"Bash(git reset --hard:*)",
"Bash(git clean -fdx:*)",
"Bash(rm -rf /:*)",
"Bash(rm -rf ~:*)",
"Bash(gh pr merge:*)",
"Bash(gh release create:*)"
],
"ask": [
"Bash(git commit:*)",
"Bash(git rebase:*)",
"Bash(git merge:*)",
"Bash(git cherry-pick:*)",
"Bash(./gradlew publish:*)",
"Bash(./gradlew uploadArtifacts:*)",
"Bash(./gradlew clean:*)"
]
},
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/init-submodules"
}
]
}
],
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.agents/scripts/secret-scan-gate.sh"
},
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.agents/scripts/pre-pr-gate.sh"
},
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.agents/scripts/publish-version-gate.sh"
}
]
}
],
"PostToolUse": [
{
"matcher": "Edit|Write|MultiEdit",
"hooks": [
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.agents/scripts/sanitize-source-code.sh"
},
{
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.agents/scripts/update-copyright.sh"
}
]
}
]
}
}
1 change: 1 addition & 0 deletions .claude/skills
6 changes: 3 additions & 3 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ coverage:
- "**/test/**/*"
status:
# https://docs.codecov.com/docs/github-checks#yaml-configuration-for-github-checks-and-codecov
patch: false
patch: off
# https://docs.codecov.com/docs/commit-status
project:
default:
target: auto
threshold: 0.05%
base: auto
paths:
- "src"
- "src/main/**/*"
- "**/src/main/**"
if_ci_failed: error
informational: false
only_pulls: true
Expand Down
Loading
Loading