-
Notifications
You must be signed in to change notification settings - Fork 25
docs(claude): trim and reorganize CLAUDE.md guidance #633
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nanotaboada
wants to merge
4
commits into
master
Choose a base branch
from
docs/trim-claude-md-and-migrate-skills
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
84db3ea
docs(claude): trim and reorganize CLAUDE.md guidance
nanotaboada 2fc1a90
docs(claude): add top-level headings to new skill files
nanotaboada c33f066
Merge branch 'master' into docs/trim-claude-md-and-migrate-skills
nanotaboada 23509fa
Merge branch 'master' into docs/trim-claude-md-and-migrate-skills
nanotaboada File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| --- | ||
| name: add-endpoint | ||
| description: Step-by-step recipes for adding an endpoint or modifying the schema in this repo | ||
| --- | ||
|
|
||
| # Endpoint and schema recipes | ||
|
|
||
| **Add an endpoint**: Add Pydantic model in `models/` if the request/response | ||
| shape is new β add async service method in `services/` with error handling and | ||
| rollback β add route in `routes/` with `Depends(generate_async_session)` β | ||
| add tests following the naming pattern β run pre-commit checks. | ||
|
|
||
| **Modify schema**: Update `schemas/player_schema.py` β run | ||
| `uv run alembic revision --autogenerate -m "description"` to generate a | ||
| migration β review and adjust the generated file in `alembic/versions/` β | ||
| run `uv run alembic upgrade head` β update `models/player_model.py` if the | ||
| API shape changes β update services and tests β run `pytest`. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| --- | ||
| name: create-issue | ||
| description: Feature and bug GitHub Issue templates for this repo's Spec-Driven Development workflow | ||
| --- | ||
|
|
||
| # Create an issue | ||
|
|
||
| Spec-Driven Development (SDD): discuss in Plan mode first, create a GitHub | ||
| Issue as the spec artifact, then implement. Always offer to draft an issue | ||
| before writing code. | ||
|
|
||
| - Feature (`enhancement`): Problem β Proposed Solution β Acceptance Criteria β References | ||
| - Bug (`bug`): Description β Steps to Reproduce β Expected/Actual Behavior β Environment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.