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
2 changes: 1 addition & 1 deletion .claude/rules/development-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ just test-examples # Run example tests
- Use `.yaml` extension instead of `.yml` for YAML files
- Keep file names concise but meaningful

## Import Organisation
## Import Organization

- Standard library imports first
- Third-party imports second
Expand Down
2 changes: 1 addition & 1 deletion .claude/rules/no-relative-imports.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Standards for using absolute imports instead of relative imports in Python files

- Always use absolute imports starting with the full package name (`stackone_ai`)
- Never use relative imports (`.` or `..`)
- Keep imports organised and grouped
- Keep imports organized and grouped

## Examples

Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
| **no-relative-imports** | `**/*.py` | Enforce absolute imports in Python files |
| **package-installation** | `**/pyproject.toml` | UV package management standards |
| **uv-scripts** | `scripts/**/*.py` | Utility script standards with UV |
| **examples-standards** | `examples/**/*` | Example requirements and organisation |
| **examples-standards** | `examples/**/*` | Example requirements and organization |

## Project Overview

Expand Down Expand Up @@ -114,7 +114,7 @@ toolset = StackOneToolSet(
2. Parser automatically converts to tool definitions
3. Test with `make test-tools`

### Modifying Tool Behaviour
### Modifying Tool Behavior

- Core execution logic in `StackOneTool.execute()` method
- HTTP configuration via `ExecuteConfig` class
Expand Down
2 changes: 2 additions & 0 deletions typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ extend-ignore-re = [
]

[files]
ignore-hidden = false
extend-exclude = [
".git",
".venv",
"uv.lock",
"CHANGELOG.md",
Expand Down