Skip to content

Commit 5d584ab

Browse files
authored
Upgrade to Claude Code workbench (#7)
1 parent 0e8e952 commit 5d584ab

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

.claude/settings.local.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(cat:*)",
5+
"Bash(comm -23:*)",
6+
"Bash(jq:*)",
7+
"Skill(obdb-editor)",
8+
"Bash(python3:*)",
9+
"Bash(find:*)"
10+
],
11+
"deny": [],
12+
"ask": []
13+
}
14+
}

.devcontainer/devcontainer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"name": "Python Development",
3-
"image": "mcr.microsoft.com/devcontainers/python:3",
3+
"image": "ghcr.io/obdb/devcontainer:latest",
44
"customizations": {
55
"vscode": {
66
"extensions": [
77
"ms-python.python",
88
"ms-python.vscode-pylance",
99
"GitHub.vscode-github-actions",
1010
"GitHub.vscode-pull-request-github",
11-
"ClutchEngineering.obdb-tooling"
11+
"ClutchEngineering.obdb-tooling",
12+
"anthropic.claude-code"
1213
],
1314
"settings": {
1415
"task.quickOpen.skip": true,
@@ -23,7 +24,6 @@
2324
}
2425
}
2526
},
26-
"postCreateCommand": "pip install pytest pyyaml pytest-xdist",
27-
"postAttachCommand": "cd tests/schemas && git pull && cd ../.. || git clone --depth=1 https://github.com/OBDb/.schemas.git tests/schemas",
27+
"postAttachCommand": "/usr/local/bin/setup-obdb-dev.sh",
2828
"remoteUser": "vscode"
29-
}
29+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
tests/schemas/
22
__pycache__
3+
.claude/skills

0 commit comments

Comments
 (0)