@datatamer.ai/agentdev 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agentdev.js +7 -10
- package/package.json +1 -1
- package/skills/auto-ticket-workflow.md +42 -7
package/package.json
CHANGED
|
@@ -245,12 +245,12 @@ openspec instructions <artifact-id> --change "<change-name>" --json
|
|
|
245
245
|
|
|
246
246
|
Continue until all `applyRequires` artifacts are complete.
|
|
247
247
|
|
|
248
|
-
6. **Comment on GitHub issue:**
|
|
248
|
+
6. **Comment on GitHub issue with OpenSpec status:**
|
|
249
249
|
```bash
|
|
250
|
-
gh issue comment <issue-number> -R data-tamer/<repo> --body "## OpenSpec
|
|
250
|
+
gh issue comment <issue-number> -R data-tamer/<repo> --body "## 🔄 Phase 2: OpenSpec Created
|
|
251
251
|
|
|
252
252
|
Change: \`<change-name>\`
|
|
253
|
-
Starting
|
|
253
|
+
Artifacts created. Starting implementation...
|
|
254
254
|
|
|
255
255
|
---
|
|
256
256
|
*Automated by Claude Code Auto-Ticket Workflow*"
|
|
@@ -309,7 +309,18 @@ Fixes #<issue-number>
|
|
|
309
309
|
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>"
|
|
310
310
|
```
|
|
311
311
|
|
|
312
|
-
7. **Comment on issue with implementation details
|
|
312
|
+
7. **Comment on GitHub issue with implementation details:**
|
|
313
|
+
```bash
|
|
314
|
+
gh issue comment <issue-number> -R data-tamer/<repo> --body "## 🔄 Phase 3: Implementation Complete
|
|
315
|
+
|
|
316
|
+
**Commit:** \`<commit-hash>\`
|
|
317
|
+
**Changes:** <brief summary of what was changed>
|
|
318
|
+
|
|
319
|
+
Starting local testing...
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
*Automated by Claude Code Auto-Ticket Workflow*"
|
|
323
|
+
```
|
|
313
324
|
|
|
314
325
|
**After Phase 3: Print "✓ Implementation complete. CONTINUING TO PHASE 4..." and IMMEDIATELY proceed.**
|
|
315
326
|
|
|
@@ -332,7 +343,15 @@ Screenshots are saved to `/tmp/auto-ticket-screenshots/`
|
|
|
332
343
|
|
|
333
344
|
3. If tests fail: Fix issues and re-test (do NOT move to production)
|
|
334
345
|
|
|
335
|
-
4. If tests pass: Comment on issue
|
|
346
|
+
4. If tests pass: **Comment on GitHub issue:**
|
|
347
|
+
```bash
|
|
348
|
+
gh issue comment <issue-number> -R data-tamer/<repo> --body "## 🔄 Phase 4: Local Testing Passed
|
|
349
|
+
|
|
350
|
+
All local tests passed. Starting production deployment...
|
|
351
|
+
|
|
352
|
+
---
|
|
353
|
+
*Automated by Claude Code Auto-Ticket Workflow*"
|
|
354
|
+
```
|
|
336
355
|
|
|
337
356
|
**After Phase 4: Print "✓ Local tests passed. CONTINUING TO PHASE 5..." and IMMEDIATELY proceed.**
|
|
338
357
|
|
|
@@ -359,7 +378,15 @@ gh run watch -R data-tamer/<repo>
|
|
|
359
378
|
ssh root@153.92.127.95 'export KUBECONFIG=/etc/rancher/k3s/k3s.yaml && kubectl get pods -n datatamer | grep <service>'
|
|
360
379
|
```
|
|
361
380
|
|
|
362
|
-
4. Comment on issue with deployment status
|
|
381
|
+
4. **Comment on GitHub issue with deployment status:**
|
|
382
|
+
```bash
|
|
383
|
+
gh issue comment <issue-number> -R data-tamer/<repo> --body "## 🔄 Phase 5: Production Deployed
|
|
384
|
+
|
|
385
|
+
Deployment complete. Starting production testing...
|
|
386
|
+
|
|
387
|
+
---
|
|
388
|
+
*Automated by Claude Code Auto-Ticket Workflow*"
|
|
389
|
+
```
|
|
363
390
|
|
|
364
391
|
**After Phase 5: Print "✓ Production deployed. CONTINUING TO PHASE 6..." and IMMEDIATELY proceed.**
|
|
365
392
|
|
|
@@ -398,7 +425,15 @@ node playwright-test.js slides --production
|
|
|
398
425
|
- Stop workflow
|
|
399
426
|
|
|
400
427
|
5. **If production tests PASS:**
|
|
401
|
-
- Comment on issue
|
|
428
|
+
- **Comment on GitHub issue:**
|
|
429
|
+
```bash
|
|
430
|
+
gh issue comment <issue-number> -R data-tamer/<repo> --body "## 🔄 Phase 6: Production Testing Passed
|
|
431
|
+
|
|
432
|
+
All production tests passed. Completing ticket...
|
|
433
|
+
|
|
434
|
+
---
|
|
435
|
+
*Automated by Claude Code Auto-Ticket Workflow*"
|
|
436
|
+
```
|
|
402
437
|
- Print "✓ Production tests passed. CONTINUING TO PHASE 7..."
|
|
403
438
|
|
|
404
439
|
**Before continuing, check for new comments and chat messages** (see "Check for New Comments Between Phases" and "Check for Chat Messages Between Phases" above).
|