mirror of
https://github.com/eyaltoledano/claude-task-master.git
synced 2026-01-30 06:12:05 +00:00
* docs: Clarify Claude Code .claude configuration behavior and recommend .md for PRDs This addresses two documentation improvements: 1. **Claude Code Configuration Behavior (#1180)** - Added comprehensive section explaining how Task Master interacts with Claude Code's .claude configuration - Clarified that Task Master only passes MCP config when claudeCode.mcpServers is configured - Documented precedence: explicit Task Master config vs Claude CLI defaults - Provided practical examples for different configuration scenarios - Added recommendations for deterministic vs. existing-setup workflows 2. **PRD File Extension Recommendation** - Updated all examples to use .md extension instead of .txt for PRD files - Added prominent note explaining benefits of .md: syntax highlighting, proper rendering, better collaboration - Updated directory structure diagrams and workflow examples - Clarified that both extensions work, but .md is recommended for editor support Files modified: - docs/examples/claude-code-usage.md: Added "Claude Code Configuration Behavior" section - assets/AGENTS.md: Updated all PRD references to use .md, added PRD format note Resolves: eyaltoledano/claude-task-master#1180 * chore: Add changeset and require changesets for PRs - Added changeset for documentation updates (patch) - Updated CLAUDE.md to require changesets for all PRs * docs: Simplify PR to only recommend .md extension for PRDs Based on feedback from @ben-vargas: **Removed:** - Changeset file (not needed for docs-only PR) - Claude Code `.claude` configuration behavior documentation (will become stale when upgrading to ai-sdk-provider-claude-code v2.0.0+ which uses @anthropic-ai/claude-agent-sdk) **Updated:** - CLAUDE.md changeset guidelines: clarified changesets are only needed for code changes, not docs-only PRs **Kept:** - PRD file format recommendation: Updated all examples to use `.md` extension instead of `.txt` for better editor support, syntax highlighting, and rendering - Added note explaining benefits of `.md` format This keeps the PR focused on the non-controversial PRD format improvement and avoids documenting behavior that will soon change. Addresses feedback in: #1180 * docs: Update apps/docs to recommend .md extension for PRD files Applied the same PRD format recommendations to the user-facing documentation site: - apps/docs/getting-started/quick-start/prd-quick.mdx: - Updated template references from .txt to .md - Added explanation of .md benefits in note box - Updated all command examples to use .md extension - Updated file naming examples - apps/docs/capabilities/rpg-method.mdx: - Updated RPG template reference to .md - Updated standard template reference to .md - Updated parse-prd command examples - Updated workflow examples Addresses @Crunchyman-ralph's request to update apps/docs * refactor: Rename PRD template files from .txt to .md extension Renamed actual template files to match documentation updates: - .taskmaster/templates/example_prd.txt → example_prd.md - .taskmaster/templates/example_prd_rpg.txt → example_prd_rpg.md This ensures the actual files match what we're recommending in the documentation. --------- Co-authored-by: Ben Coombs <bjcoombs@users.noreply.github.com>
152 lines
5.8 KiB
Markdown
152 lines
5.8 KiB
Markdown
# Claude Code Instructions
|
|
|
|
## Task Master AI Instructions
|
|
|
|
**Import Task Master's development workflow commands and guidelines, treat as if import is in the main CLAUDE.md file.**
|
|
@./.taskmaster/CLAUDE.md
|
|
|
|
## Test Guidelines
|
|
|
|
### Test File Placement
|
|
|
|
- **Package & tests**: Place in `packages/<package-name>/src/<module>/<file>.spec.ts` or `apps/<app-name>/src/<module>/<file.spec.ts>` alongside source
|
|
- **Package integration tests**: Place in `packages/<package-name>/tests/integration/<module>/<file>.test.ts` or `apps/<app-name>/tests/integration/<module>/<file>.test.ts` alongside source
|
|
- **Isolated unit tests**: Use `tests/unit/packages/<package-name>/` only when parallel placement isn't possible
|
|
- **Test extension**: Always use `.ts` for TypeScript tests, never `.js`
|
|
|
|
### Synchronous Tests
|
|
|
|
- **NEVER use async/await in test functions** unless testing actual asynchronous operations
|
|
- Use synchronous top-level imports instead of dynamic `await import()`
|
|
- Test bodies should be synchronous whenever possible
|
|
- Example:
|
|
|
|
```typescript
|
|
// ✅ CORRECT - Synchronous imports with .ts extension
|
|
import { MyClass } from '../src/my-class.js';
|
|
|
|
it('should verify behavior', () => {
|
|
expect(new MyClass().property).toBe(value);
|
|
});
|
|
|
|
// ❌ INCORRECT - Async imports
|
|
it('should verify behavior', async () => {
|
|
const { MyClass } = await import('../src/my-class.js');
|
|
expect(new MyClass().property).toBe(value);
|
|
});
|
|
```
|
|
|
|
### When to Write Tests
|
|
|
|
**ALWAYS write tests for:**
|
|
|
|
- **Bug fixes**: Add a regression test that would have caught the bug
|
|
- **Business logic**: Complex calculations, validations, transformations
|
|
- **Edge cases**: Boundary conditions, error handling, null/undefined cases
|
|
- **Public APIs**: Methods other code depends on
|
|
- **Integration points**: Database, file system, external APIs
|
|
|
|
**SKIP tests for:**
|
|
|
|
- Simple getters/setters: `getX() { return this.x; }`
|
|
- Trivial pass-through functions with no logic
|
|
- Pure configuration objects
|
|
- Code that just delegates to another tested function
|
|
|
|
**Examples:**
|
|
|
|
```javascript
|
|
// ✅ WRITE A TEST - Bug fix with regression prevention
|
|
it('should use correct baseURL from defaultBaseURL config', () => {
|
|
const provider = new ZAIProvider();
|
|
expect(provider.defaultBaseURL).toBe('https://api.z.ai/api/paas/v4/');
|
|
});
|
|
|
|
// ✅ WRITE A TEST - Business logic with edge cases
|
|
it('should parse subtask IDs correctly', () => {
|
|
expect(parseTaskId('1.2.3')).toEqual({ taskId: 1, subtaskId: 2, subSubtaskId: 3 });
|
|
expect(parseTaskId('invalid')).toBeNull();
|
|
});
|
|
|
|
// ❌ SKIP TEST - Trivial getter
|
|
class Task {
|
|
get id() { return this._id; } // No test needed
|
|
}
|
|
|
|
// ❌ SKIP TEST - Pure delegation
|
|
function getTasks() {
|
|
return taskManager.getTasks(); // Already tested in taskManager
|
|
}
|
|
```
|
|
|
|
**Bug Fix Workflow:**
|
|
|
|
1. Encounter a bug
|
|
2. Write a failing test that reproduces it
|
|
3. Fix the bug
|
|
4. Verify test now passes
|
|
5. Commit both fix and test together
|
|
|
|
## Architecture Guidelines
|
|
|
|
### Business Logic Separation
|
|
|
|
**CRITICAL RULE**: ALL business logic must live in `@tm/core`, NOT in presentation layers.
|
|
|
|
- **`@tm/core`** (packages/tm-core/):
|
|
- Contains ALL business logic, domain models, services, and utilities
|
|
- Provides clean facade APIs through domain objects (tasks, auth, workflow, git, config)
|
|
- Houses all complexity - parsing, validation, transformations, calculations, etc.
|
|
- Example: Task ID parsing, subtask extraction, status validation, dependency resolution
|
|
|
|
- **`@tm/cli`** (apps/cli/):
|
|
- Thin presentation layer ONLY
|
|
- Calls tm-core methods and displays results
|
|
- Handles CLI-specific concerns: argument parsing, output formatting, user prompts
|
|
- NO business logic, NO data transformations, NO calculations
|
|
|
|
- **`@tm/mcp`** (apps/mcp/):
|
|
- Thin presentation layer ONLY
|
|
- Calls tm-core methods and returns MCP-formatted responses
|
|
- Handles MCP-specific concerns: tool schemas, parameter validation, response formatting
|
|
- NO business logic, NO data transformations, NO calculations
|
|
|
|
- **`apps/extension`** (future):
|
|
- Thin presentation layer ONLY
|
|
- Calls tm-core methods and displays in VS Code UI
|
|
- NO business logic
|
|
|
|
**Examples of violations to avoid:**
|
|
|
|
- ❌ Creating helper functions in CLI/MCP to parse task IDs → Move to tm-core
|
|
- ❌ Data transformation logic in CLI/MCP → Move to tm-core
|
|
- ❌ Validation logic in CLI/MCP → Move to tm-core
|
|
- ❌ Duplicating logic across CLI and MCP → Implement once in tm-core
|
|
|
|
**Correct approach:**
|
|
|
|
- ✅ Add method to TasksDomain: `tasks.get(taskId)` (automatically handles task and subtask IDs)
|
|
- ✅ CLI calls: `await tmCore.tasks.get(taskId)` (supports "1", "1.2", "HAM-123", "HAM-123.2")
|
|
- ✅ MCP calls: `await tmCore.tasks.get(taskId)` (same intelligent ID parsing)
|
|
- ✅ Single source of truth in tm-core
|
|
|
|
## Code Quality & Reusability Guidelines
|
|
|
|
Apply standard software engineering principles:
|
|
|
|
- **DRY (Don't Repeat Yourself)**: Extract patterns that appear 2+ times into reusable components or utilities
|
|
- **YAGNI (You Aren't Gonna Need It)**: Don't over-engineer. Create abstractions when duplication appears, not before
|
|
- **Maintainable**: Single source of truth. Change once, update everywhere
|
|
- **Readable**: Clear naming, proper structure, export from index files
|
|
- **Flexible**: Accept configuration options with sensible defaults
|
|
|
|
## Documentation Guidelines
|
|
|
|
- **Documentation location**: Write docs in `apps/docs/` (Mintlify site source), not `docs/`
|
|
- **Documentation URL**: Reference docs at <https://docs.task-master.dev>, not local file paths
|
|
|
|
## Changeset Guidelines
|
|
|
|
- **Add a changeset for code changes** - Run `npx changeset` after making code changes (not needed for docs-only PRs)
|
|
- When creating changesets, remember that it's user-facing, meaning we don't have to get into the specifics of the code, but rather mention what the end-user is getting or fixing from this changeset
|