Initial commit: .claude folder with agents and skills

This commit is contained in:
Harivansh Rathi 2026-03-23 23:10:37 -04:00
commit aa9a785e26
42 changed files with 3367 additions and 0 deletions

View file

@ -0,0 +1,28 @@
### Status
- Document: [.humanlayer/tasks/ENG-XXXX-description/YYYY-MM-DD-plan.md](cloud permalink from hook)
- Ticket: [ENG-XXXX](ticket URL if known, otherwise omit link)
- Phases: [count]
### Phase Summary
1. [Phase 1 title]: [brief description]
2. [Phase 2 title]: [brief description]
...
### Key Implementation Details
- [notable code change or pattern]
- ...
### Next Steps
To proceed to implementation, use a prompt like
```text
use the setup-worktree skill for [.humanlayer/tasks/ENG-XXXX-description/YYYY-MM-DD-plan.md]
```
---
You can view the full document here: [YYYY-MM-DD-plan.md](cloud permalink from hook)

View file

@ -0,0 +1,108 @@
---
task: eng-xxxx-description
type: plan
repo: [current repository]
branch: [current branch name]
sha: [result of git rev-parse HEAD]
---
# [Feature/Task Name] Implementation Plan
## Overview
[Brief description of what we're implementing and why]
## Current State Analysis
[What exists now, what's missing, key constraints discovered]
### Key Discoveries:
- [Important finding with file:line reference]
- [Pattern to follow]
- [Constraint to work within]
## Desired End State
[A specification of the desired end state after this plan is complete, and how to verify it]
## What We're NOT Doing
[Explicitly list out-of-scope items to prevent scope creep]
## Implementation Approach
[High-level strategy and reasoning]
---
## Phase 1: [Descriptive Name]
### Overview
[What this phase accomplishes]
### Changes Required:
#### 1.1 [Component/File Group]
**File**: `path/to/file.ext`
**Changes**: [Summary of changes] - [around line X | add after Y | etc etc]
```diff
// Specific code to add/modify
+ export function [name]() {
// existing logic...
+ [code changes to make]
+
+ }
export interface [name]{
// existing fiels (a, b, c, d, e)
+ [new fields to add]
+ [new fields to add]
}
```
#### 1.2 [Another Component/File Group]
**File**: `path/to/file.ext`
**Changes**: [Summary of changes]
...
### Success Criteria:
#### Automated Verification:
- [ ] [Migration applies cleanly: `bun run ...`]
- [ ] [Type checking passes: `bun run biome`]
- [ ] [Tests pass: `bun run test`]
- [ ] [other automated verification as appropriate: curl, sql queries, etc]
<optional if="manual validation relevant">
#### Manual Verification:
- [ ] [manual step 1]
- [ ] [manual step 2]
- [ ] [manual step 3]
**Implementation Note**: After completing this phase and all automated verification passes, pause here for manual confirmation from the human that the manual testing was successful before proceeding to the next phase.
</optional>
---
## Phase 2: [Descriptive Name]
### Overview
[What this phase accomplishes]
### Changes Required:
#### 2.1 [Component/File Group]
**File**: `path/to/file.ext`
**Changes**: [Summary of changes]
### Success Criteria:
[Similar structure with both automated and manual success criteria...]
---