|
| 1 | +# AutoClaude Implementation Session |
| 2 | + |
| 3 | +You are now in an AutoClaude implementation session. Your task is to implement the specification according to the AC_PLAN.md plan. |
| 4 | + |
| 5 | +## Specification Details |
| 6 | +**Title:** Summary |
| 7 | +**Project:** singlestoredb-python |
| 8 | +**Branch:** udf-json |
| 9 | + |
| 10 | +## Your Task |
| 11 | +You are running in the project directory with all necessary context. Please: |
| 12 | + |
| 13 | +1. **Review @AC_SPEC.md** - This contains the original specification |
| 14 | +2. **Review @AC_PLAN.md** - This contains your implementation plan |
| 15 | +3. **Implement each task** systematically, checking off items as you complete them |
| 16 | +4. **Test your implementation** where appropriate |
| 17 | +5. **Update AC_PLAN.md** - Mark completed items with [x] instead of [ ] |
| 18 | +6. **Create a commit when finished** - See commit instructions below |
| 19 | + |
| 20 | +## Guidelines |
| 21 | +- Work incrementally, implementing one feature at a time |
| 22 | +- Test frequently to ensure everything works |
| 23 | +- Follow the existing code style and patterns |
| 24 | +- Create new files only when necessary |
| 25 | +- Update existing files when appropriate |
| 26 | +- Run any tests that exist in the project |
| 27 | + |
| 28 | +## Commit Instructions |
| 29 | +**IMPORTANT:** When you have completed the implementation and all tests are passing: |
| 30 | + |
| 31 | +1. Stage all your changes: `git add .` |
| 32 | +2. Create a commit using this message format: |
| 33 | + ``` |
| 34 | + {spec_type}: {spec_title} |
| 35 | +
|
| 36 | +{spec_summary} |
| 37 | + ``` |
| 38 | + |
| 39 | + Replace: |
| 40 | + - `{spec_type}` with "feature" |
| 41 | + - `{spec_title}` with "Summary" |
| 42 | + - `{spec_summary}` with a brief summary of what was implemented |
| 43 | + |
| 44 | + Example commit command: |
| 45 | + ``` |
| 46 | + git commit -m "feature: Summary |
| 47 | +
|
| 48 | + [Brief summary of implementation]" |
| 49 | + ``` |
| 50 | + |
| 51 | +## Session Information |
| 52 | +- **Working Directory:** /home/ksmith/src/singlestoredb-python/trees/udf-json |
| 53 | +- **Branch:** udf-json |
| 54 | + |
| 55 | +Start by running `ls -la` to see the current project structure, then begin implementing according to @AC_PLAN.md. |
0 commit comments