Skip to content

Commit bd246ff

Browse files
committed
fix: correct import syntax and remove duplications in CLAUDE.md
- Fixed import statements to not include .mdc extension - Fixed references to imported files using @filename syntax - Removed duplicated content covered by imported Cursor rules
1 parent 0954c57 commit bd246ff

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

CLAUDE.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## cursor rules
66

7-
@import .cursor/rules/package-installation.mdc
8-
@import .cursor/rules/no-relative-imports.mdc
9-
@import .cursor/rules/uv-scripts.mdc
10-
@import .cursor/rules/release-please-standards.mdc
11-
@import .cursor/rules/examples-standards.mdc
7+
@import .cursor/rules/package-installation
8+
@import .cursor/rules/no-relative-imports
9+
@import .cursor/rules/uv-scripts
10+
@import .cursor/rules/release-please-standards
11+
@import .cursor/rules/examples-standards
1212

1313
## Project Overview
1414

@@ -91,11 +91,11 @@ toolset = StackOneToolSet(
9191
### Testing
9292
- Snapshot testing for tool parsing (`tests/snapshots/`)
9393
- Async tests use `pytest-asyncio`
94-
- Example validation in `tests/test_examples.py`
94+
- Example validation: See @examples-standards
9595

9696
## Important Considerations
9797

98-
1. **Dependencies**: Project uses `uv` for dependency management (not pip/poetry)
98+
1. **Dependencies**: See @package-installation for uv dependency management
9999
2. **Pre-commit**: Hooks configured for ruff and mypy - run on all commits
100100
3. **Python Version**: Requires Python >=3.11
101101
4. **Error Handling**: Custom exceptions (`StackOneError`, `StackOneAPIError`)
@@ -115,6 +115,6 @@ toolset = StackOneToolSet(
115115
- Response handling in `_process_response()`
116116

117117
### Updating Documentation
118-
- Examples in `examples/` directory auto-generate docs
118+
- Examples requirements: See @examples-standards
119119
- Run `make docs-serve` to preview changes
120120
- MkDocs config in `mkdocs.yml`

0 commit comments

Comments
 (0)