You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- A feature can start in `docs/`, not in source code.
19
22
- Product requirements can be made explicit enough to drive API, UI, and test changes.
20
23
- The same feature can be validated both in local service mode and in a k3s-style environment.
21
24
- A single engineer can keep backend, frontend, QA, and infrastructure aligned through shared documents and conventions.
25
+
- AI-assisted workflows can be useful when they are grounded in explicit PRDs, specs, contracts, and validation steps.
26
+
27
+
## Why This Matters
28
+
29
+
Modern teams lose time translating intent into implementation.
30
+
31
+
This workspace demonstrates a structured way to:
32
+
33
+
- reduce ambiguity between product and engineering
34
+
- make backend, frontend, and QA changes easier to coordinate
35
+
- keep AI assistance inside a deterministic workflow instead of using it as an unstructured code generator
36
+
- validate the same feature in both local service mode and a k3s-style environment
37
+
38
+
The goal is not to claim “AI replaces engineering.” The goal is to show how one engineer can use structure, documentation, and automation to increase delivery leverage.
22
39
23
40
## Delivery Model
24
41
@@ -55,6 +72,19 @@ That means:
55
72
56
73
The product-side contribution in this repo is the document package. The code should follow the documents, not lead them.
57
74
75
+
## AI-Assisted Workflow
76
+
77
+
AI is useful in this workspace only when it stays attached to real artifacts.
78
+
79
+
The intended pattern is:
80
+
81
+
1. Write the PRD in `docs/prd/`.
82
+
2. Refine it into an execution-facing spec in `docs/spec/`.
83
+
3. Use AI assistance to map the spec into backend, frontend, and e2e work.
84
+
4. Validate the result with tests, Docker, and k3d.
85
+
86
+
The supporting note for that workflow lives in [`docs/ai-workflow.md`](/Users/skshim/git/side-project/example-workspace/docs/ai-workflow.md).
0 commit comments