Add CLAUDE.md for Claude Code development guidance#598
Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 14086e05f3
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| 3. Python docs / tests | ||
| # JavaScript | ||
| cd packages && pnpm install | ||
| cd packages/buckaroo-js-core && pnpm run build && pnpm test |
There was a problem hiding this comment.
Fix JavaScript commands to use current working directory
This command sequence is internally inconsistent: after cd packages && pnpm install, the shell is already in packages/, so cd packages/buckaroo-js-core resolves to packages/packages/buckaroo-js-core and fails. Anyone following the Build & Test block verbatim will not be able to run the JS build/tests, so the documented workflow is currently broken.
Useful? React with 👍 / 👎.
📦 TestPyPI package publishedpip install --index-strategy unsafe-best-match --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ buckaroo==0.12.12.dev22444200187or with uv: uv pip install --index-strategy unsafe-best-match --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ buckaroo==0.12.12.dev22444200187MCP server for Claude Codeclaude mcp add buckaroo-table -- uvx --from "buckaroo[mcp]==0.12.12.dev22444200187" --index-strategy unsafe-best-match --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ buckaroo-table |
Summary
Test plan
🤖 Generated with Claude Code