vibeman 0.0.9 → 0.0.11
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/api.js +88180 -80376
- package/dist/apps/api/resources/templates/task.md +48 -0
- package/dist/commit.txt +1 -1
- package/dist/index.js +2021 -35
- package/dist/prisma/dev.db +0 -0
- package/dist/prisma/schema.prisma +0 -1
- package/dist/prisma.config.ts +8 -0
- package/dist/scripts/init-test-repo.mjs +234 -0
- package/dist/scripts/lib/test-fixtures.mjs +901 -0
- package/dist/scripts/seed-test-fixtures.mjs +281 -0
- package/dist/ui/assets/{index-BbfDsh-D.js → index-5kvaa7VH.js} +1 -1
- package/dist/ui/assets/{index-Bb69tSxN.js → index-B2YlQpV0.js} +1 -1
- package/dist/ui/assets/{index-C-OxxnxE.js → index-BFpKdhc4.js} +1 -1
- package/dist/ui/assets/{index-qDf_Uo6N.js → index-BKcn2ir8.js} +1 -1
- package/dist/ui/assets/{index-CW8VfVIC.js → index-BmCH7Zkp.js} +88 -94
- package/dist/ui/assets/{index-EHnTtRu0.js → index-BnA5v3sz.js} +1 -1
- package/dist/ui/assets/{index-DqEtuI-j.js → index-BtgmEMNX.js} +1 -1
- package/dist/ui/assets/{index-B7PC3UwW.js → index-Buod5MG9.js} +1 -1
- package/dist/ui/assets/{index-Dhrbisdh.js → index-BxFJT2l4.js} +1 -1
- package/dist/ui/assets/{index-BEEMkSga.js → index-CCzed9cx.js} +1 -1
- package/dist/ui/assets/{index-SowqJRTb.js → index-CJ0FVxY4.js} +1 -1
- package/dist/ui/assets/{index-ZYq2otFn.js → index-CaM8gf-6.js} +1 -1
- package/dist/ui/assets/{index-DQTqMEWL.js → index-CfiNAuWd.js} +1 -1
- package/dist/ui/assets/{index-Cb3j0p9y.js → index-Ck0eDlqj.js} +1 -1
- package/dist/ui/assets/{index-F3UrAKk1.js → index-CmzQ8vUy.js} +1 -1
- package/dist/ui/assets/{index-Du9IbowE.js → index-CoX8THvk.js} +1 -1
- package/dist/ui/assets/{index-BZ4ywKS-.js → index-D4lRQ9OU.js} +1 -1
- package/dist/ui/assets/{index-Bu9gi8CT.js → index-DCwTMEKA.js} +1 -1
- package/dist/ui/assets/{index-hJzy_UWf.js → index-D_p2Z3lg.js} +1 -1
- package/dist/ui/assets/{index-DrA24vfU.js → index-DlPVzvxz.js} +1 -1
- package/dist/ui/assets/{index-CwR-eksU.js → index-Q46jjFaN.js} +1 -1
- package/dist/ui/assets/{index-CH876Txt.js → index-XVbgp8h-.js} +1 -1
- package/dist/ui/assets/{index-iMeltPfH.js → index-xr3-NPcF.js} +1 -1
- package/dist/ui/index.html +1 -1
- package/package.json +10 -3
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
# For human readability + AI parsing.
|
|
3
|
+
# For type/status/priority: values must match the options exactly and be lowercase.
|
|
4
|
+
id: [type]-[short-id]
|
|
5
|
+
title: [Short, descriptive title]
|
|
6
|
+
type: feature # feature, bug, chore, refactor, test, doc, other
|
|
7
|
+
status: backlog # backlog, in-progress, review, done
|
|
8
|
+
tags: [tag1, tag2]
|
|
9
|
+
priority: medium # low, medium, high
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Goal
|
|
13
|
+
|
|
14
|
+
[What outcome should exist when this is done? Keep it concrete and short.]
|
|
15
|
+
|
|
16
|
+
## Context
|
|
17
|
+
|
|
18
|
+
[Key background, links, or constraints that matter to implementation.]
|
|
19
|
+
|
|
20
|
+
## Requirements
|
|
21
|
+
|
|
22
|
+
- [ ] Primary requirement #1
|
|
23
|
+
- [ ] Primary requirement #2
|
|
24
|
+
|
|
25
|
+
## Implementation Notes
|
|
26
|
+
|
|
27
|
+
[Notes for AI or human. Include only what matters:
|
|
28
|
+
|
|
29
|
+
- target files or directories
|
|
30
|
+
- desired approach or patterns to follow
|
|
31
|
+
- tests/commands to run
|
|
32
|
+
- any do-not-change or out-of-scope items]
|
|
33
|
+
|
|
34
|
+
## Recommended Steps
|
|
35
|
+
|
|
36
|
+
- Step 1
|
|
37
|
+
- [ ] Actionable TODO
|
|
38
|
+
- Step 2
|
|
39
|
+
- [ ] Actionable TODO
|
|
40
|
+
|
|
41
|
+
## Acceptance Criteria
|
|
42
|
+
|
|
43
|
+
- [ ] Verifiable outcome #1
|
|
44
|
+
- [ ] Verifiable outcome #2
|
|
45
|
+
|
|
46
|
+
## Implementation Summary
|
|
47
|
+
|
|
48
|
+
[Auto-generated after completion: what changed + tests run.]
|
package/dist/commit.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
07b258d
|