Skip to content

Commit b86a804

Browse files
committed
remove work dir stuff
1 parent 25cb082 commit b86a804

12 files changed

Lines changed: 16 additions & 924 deletions

File tree

.claude/commands/add_platform.verify.md

Lines changed: 2 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -145,85 +145,6 @@ Ensure the implementation step is complete:
145145
- Each platform's commands are independent
146146
- No file conflicts or overwrites
147147

148-
6. **Document verification results**
149-
150-
Create a verification report documenting what was tested and the results.
151-
152-
## Output Format
153-
154-
### verification_complete.md
155-
156-
Location: `deepwork/add_platform/verification_complete.md` (in work directory)
157-
158-
**Structure**:
159-
```markdown
160-
# Platform Verification Complete: <platform_name>
161-
162-
## Summary
163-
164-
**Platform**: <platform_name>
165-
**Date**: YYYY-MM-DD
166-
**Status**: PASSED / FAILED
167-
168-
## Installation Test
169-
170-
### Command Executed
171-
```bash
172-
deepwork install --platform <platform_name>
173-
```
174-
175-
### Result
176-
- Exit code: 0
177-
- Errors: None
178-
- Warnings: [any warnings]
179-
180-
## Generated Files
181-
182-
### Command Directory: <path>
183-
184-
| File | Status | Notes |
185-
|------|--------|-------|
186-
| deepwork_jobs.define.md | Created | [size, any notes] |
187-
| deepwork_jobs.implement.md | Created | [size, any notes] |
188-
| deepwork_jobs.refine.md | Created | [size, any notes] |
189-
| deepwork_policy.define.md | Created | [size, any notes] |
190-
191-
## Content Validation
192-
193-
### Sample Command File Review
194-
195-
**File**: deepwork_jobs.define.md
196-
197-
- [ ] Correct frontmatter/metadata for platform
198-
- [ ] Job summary included
199-
- [ ] Step instructions rendered correctly
200-
- [ ] Platform-specific hooks present (if applicable)
201-
202-
### Format Compliance
203-
204-
- [ ] Files match platform's expected command format
205-
- [ ] No template rendering errors
206-
- [ ] All placeholders resolved
207-
208-
## Cross-Platform Compatibility
209-
210-
### Other Platforms Tested
211-
212-
| Platform | Still Works | Notes |
213-
|----------|-------------|-------|
214-
| claude | Yes/No | [any issues] |
215-
216-
## Conclusion
217-
218-
[Summary of verification results and any recommendations]
219-
220-
## Next Steps
221-
222-
- [ ] Platform is ready for use
223-
- [ ] Consider adding to CI/CD pipeline
224-
- [ ] Update any additional documentation
225-
```
226-
227148
## Quality Criteria
228149

229150
- Platform-specific directories are set up in the DeepWork repo
@@ -238,7 +159,6 @@ deepwork install --platform <platform_name>
238159
- No template errors or missing content
239160
- Existing platforms still work (if applicable)
240161
- No conflicts between platforms
241-
- `verification_complete.md` documents all test results
242162
- When all criteria are met, include `<promise>QUALITY_COMPLETE</promise>` in your response
243163

244164
## Context
@@ -287,7 +207,7 @@ All work for this job should be done on a dedicated work branch:
287207
## Output Requirements
288208

289209
Create the following output(s):
290-
- `verification_complete.md`
210+
- `none`
291211
Ensure all outputs are:
292212
- Well-formatted and complete
293213
- Ready for review or use by subsequent steps
@@ -326,7 +246,7 @@ After completing this step:
326246

327247
2. **Inform the user**:
328248
- Step 4 of 4 is complete
329-
- Outputs created: verification_complete.md
249+
- Outputs created: none
330250
- This is the final step - the job is complete!
331251

332252
## Workflow Complete

.claude/commands/deepwork_jobs.implement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ mkdir -p .deepwork/jobs/[job_name]/steps
103103
```
104104

105105
Files to create:
106-
- `.deepwork/jobs/[job_name]/job.yml` - Copy from work directory
106+
- `.deepwork/jobs/[job_name]/job.yml`
107107
- `.deepwork/jobs/[job_name]/steps/[step_id].md` - One for each step
108108

109109
### Step 3: Generate Step Instruction Files

.deepwork/jobs/add_platform/job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ steps:
117117
- file: templates/
118118
from_step: implement
119119
outputs:
120-
- verification_complete.md
120+
- none
121121
dependencies:
122122
- implement
123123
stop_hooks:

.deepwork/jobs/add_platform/steps/verify.md

Lines changed: 0 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -76,85 +76,6 @@ Ensure the implementation step is complete:
7676
- Each platform's commands are independent
7777
- No file conflicts or overwrites
7878

79-
6. **Document verification results**
80-
81-
Create a verification report documenting what was tested and the results.
82-
83-
## Output Format
84-
85-
### verification_complete.md
86-
87-
Location: `deepwork/add_platform/verification_complete.md` (in work directory)
88-
89-
**Structure**:
90-
```markdown
91-
# Platform Verification Complete: <platform_name>
92-
93-
## Summary
94-
95-
**Platform**: <platform_name>
96-
**Date**: YYYY-MM-DD
97-
**Status**: PASSED / FAILED
98-
99-
## Installation Test
100-
101-
### Command Executed
102-
```bash
103-
deepwork install --platform <platform_name>
104-
```
105-
106-
### Result
107-
- Exit code: 0
108-
- Errors: None
109-
- Warnings: [any warnings]
110-
111-
## Generated Files
112-
113-
### Command Directory: <path>
114-
115-
| File | Status | Notes |
116-
|------|--------|-------|
117-
| deepwork_jobs.define.md | Created | [size, any notes] |
118-
| deepwork_jobs.implement.md | Created | [size, any notes] |
119-
| deepwork_jobs.refine.md | Created | [size, any notes] |
120-
| deepwork_policy.define.md | Created | [size, any notes] |
121-
122-
## Content Validation
123-
124-
### Sample Command File Review
125-
126-
**File**: deepwork_jobs.define.md
127-
128-
- [ ] Correct frontmatter/metadata for platform
129-
- [ ] Job summary included
130-
- [ ] Step instructions rendered correctly
131-
- [ ] Platform-specific hooks present (if applicable)
132-
133-
### Format Compliance
134-
135-
- [ ] Files match platform's expected command format
136-
- [ ] No template rendering errors
137-
- [ ] All placeholders resolved
138-
139-
## Cross-Platform Compatibility
140-
141-
### Other Platforms Tested
142-
143-
| Platform | Still Works | Notes |
144-
|----------|-------------|-------|
145-
| claude | Yes/No | [any issues] |
146-
147-
## Conclusion
148-
149-
[Summary of verification results and any recommendations]
150-
151-
## Next Steps
152-
153-
- [ ] Platform is ready for use
154-
- [ ] Consider adding to CI/CD pipeline
155-
- [ ] Update any additional documentation
156-
```
157-
15879
## Quality Criteria
15980

16081
- Platform-specific directories are set up in the DeepWork repo
@@ -169,7 +90,6 @@ deepwork install --platform <platform_name>
16990
- No template errors or missing content
17091
- Existing platforms still work (if applicable)
17192
- No conflicts between platforms
172-
- `verification_complete.md` documents all test results
17393
- When all criteria are met, include `<promise>QUALITY_COMPLETE</promise>` in your response
17494

17595
## Context

.deepwork/jobs/deepwork_jobs/steps/implement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mkdir -p .deepwork/jobs/[job_name]/steps
3434
```
3535

3636
Files to create:
37-
- `.deepwork/jobs/[job_name]/job.yml` - Copy from work directory
37+
- `.deepwork/jobs/[job_name]/job.yml`
3838
- `.deepwork/jobs/[job_name]/steps/[step_id].md` - One for each step
3939

4040
### Step 3: Generate Step Instruction Files

.gemini/commands/add_platform/verify.toml

Lines changed: 2 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -120,85 +120,6 @@ Ensure the implementation step is complete:
120120
- Each platform's commands are independent
121121
- No file conflicts or overwrites
122122
123-
6. **Document verification results**
124-
125-
Create a verification report documenting what was tested and the results.
126-
127-
## Output Format
128-
129-
### verification_complete.md
130-
131-
Location: `deepwork/add_platform/verification_complete.md` (in work directory)
132-
133-
**Structure**:
134-
```markdown
135-
# Platform Verification Complete: <platform_name>
136-
137-
## Summary
138-
139-
**Platform**: <platform_name>
140-
**Date**: YYYY-MM-DD
141-
**Status**: PASSED / FAILED
142-
143-
## Installation Test
144-
145-
### Command Executed
146-
```bash
147-
deepwork install --platform <platform_name>
148-
```
149-
150-
### Result
151-
- Exit code: 0
152-
- Errors: None
153-
- Warnings: [any warnings]
154-
155-
## Generated Files
156-
157-
### Command Directory: <path>
158-
159-
| File | Status | Notes |
160-
|------|--------|-------|
161-
| deepwork_jobs.define.md | Created | [size, any notes] |
162-
| deepwork_jobs.implement.md | Created | [size, any notes] |
163-
| deepwork_jobs.refine.md | Created | [size, any notes] |
164-
| deepwork_policy.define.md | Created | [size, any notes] |
165-
166-
## Content Validation
167-
168-
### Sample Command File Review
169-
170-
**File**: deepwork_jobs.define.md
171-
172-
- [ ] Correct frontmatter/metadata for platform
173-
- [ ] Job summary included
174-
- [ ] Step instructions rendered correctly
175-
- [ ] Platform-specific hooks present (if applicable)
176-
177-
### Format Compliance
178-
179-
- [ ] Files match platform's expected command format
180-
- [ ] No template rendering errors
181-
- [ ] All placeholders resolved
182-
183-
## Cross-Platform Compatibility
184-
185-
### Other Platforms Tested
186-
187-
| Platform | Still Works | Notes |
188-
|----------|-------------|-------|
189-
| claude | Yes/No | [any issues] |
190-
191-
## Conclusion
192-
193-
[Summary of verification results and any recommendations]
194-
195-
## Next Steps
196-
197-
- [ ] Platform is ready for use
198-
- [ ] Consider adding to CI/CD pipeline
199-
- [ ] Update any additional documentation
200-
```
201-
202123
## Quality Criteria
203124
204125
- Platform-specific directories are set up in the DeepWork repo
@@ -213,7 +134,6 @@ deepwork install --platform <platform_name>
213134
- No template errors or missing content
214135
- Existing platforms still work (if applicable)
215136
- No conflicts between platforms
216-
- `verification_complete.md` documents all test results
217137
- When all criteria are met, include `<promise>QUALITY_COMPLETE</promise>` in your response
218138
219139
## Context
@@ -262,7 +182,7 @@ All work for this job should be done on a dedicated work branch:
262182
## Output Requirements
263183
264184
Create the following output(s):
265-
- `verification_complete.md`
185+
- `none`
266186
267187
Ensure all outputs are:
268188
- Well-formatted and complete
@@ -276,7 +196,7 @@ After completing this step:
276196
277197
2. **Inform the user**:
278198
- Step 4 of 4 is complete
279-
- Outputs created: verification_complete.md
199+
- Outputs created: none
280200
- This is the final step - the job is complete!
281201
282202
## Workflow Complete

.gemini/commands/deepwork_jobs/implement.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ mkdir -p .deepwork/jobs/[job_name]/steps
7171
```
7272
7373
Files to create:
74-
- `.deepwork/jobs/[job_name]/job.yml` - Copy from work directory
74+
- `.deepwork/jobs/[job_name]/job.yml`
7575
- `.deepwork/jobs/[job_name]/steps/[step_id].md` - One for each step
7676
7777
### Step 3: Generate Step Instruction Files

0 commit comments

Comments
 (0)