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
13 changes: 8 additions & 5 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"attribution": {
"commit": "",
"pr": ""
},
"permissions": {
"allow": [
"Bash(git add:*)",
"Bash(git branch:*)",
"Bash(git checkout:*)",
"Bash(git commit:*)",
"Bash(git push:*)",
"Bash(git pull:*)",
"Bash(git status:*)",
"Bash(git diff:*)",
"Bash(git log:*)"
"Bash(git fetch:*)",
"Bash(git log:*)",
"Bash(git pull:*)",
"Bash(git push:*)",
"Bash(git status:*)"
],
"deny": [
"mcp__github__create_or_update_file",
"mcp__github__push_files",
"mcp__github__create_or_update_files",
"mcp__github__delete_file"
]
}
Expand Down
9 changes: 8 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,12 @@

# Cycles strict rules
- yaml API specs always the authority
- always udated AUDIT.md files when making changes to server, admin, client repos
- always update AUDIT.md files when making changes to server, admin, client repos
- maintain at least 95% or higher test coverage for all code repos

# Build & Test
- Install: `pip install -e ".[dev]"`
- Test: `pytest`
- Test with coverage: `pytest --cov=runcycles`
- Lint & format: `ruff check` / `ruff format`
- Type check: `mypy`
Loading