docs: add CLAUDE.md for Claude Code guidance#97
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This pull request adds a CLAUDE.md file to provide guidance to Claude Code when working in this repository. The file covers the project's purpose as a GitHub Action that syncs pull requests to Asana tasks, lists essential development commands, describes the project structure, references user-facing documentation, and outlines development practices.
Changes:
- Adds CLAUDE.md with project overview, essential commands, project structure documentation, user-facing documentation references, and development practices guidelines
| - `bun test` - Run tests | ||
| - `bun test --watch` - Watch mode |
There was a problem hiding this comment.
The test command format is inconsistent with other commands in the list. Lines 13-18 all use bun run, but lines 11-12 do not. Additionally, to match the behavior defined in package.json, use bun run test (which runs bun test --coverage) and bun run test:watch instead.
| - `bun test` - Run tests | |
| - `bun test --watch` - Watch mode | |
| - `bun run test` - Run tests with coverage | |
| - `bun run test:watch` - Watch mode |
|
|
||
| The `docs/` directory contains VitePress documentation for action users. Read these before implementing or modifying features: | ||
|
|
||
| - `docs/concepts/` - Rules, conditions, actions, templates (domain model) |
There was a problem hiding this comment.
The docs/guide/ directory exists and contains important setup documentation (installation.md and your-first-rule.md) but is not listed in the User-Facing Documentation section. Add docs/guide/ to this section to help developers find setup and workflow guidance.
| - `docs/concepts/` - Rules, conditions, actions, templates (domain model) | |
| - `docs/concepts/` - Rules, conditions, actions, templates (domain model) | |
| - `docs/guide/` - Setup and workflow guidance, including installation and your first rule |
Summary
docs/directory for domain concepts before implementing featuresTest plan