ai-engineering-starter-kit 0.4.0

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.
@@ -0,0 +1,19 @@
1
+ # Copilot Instructions
2
+
3
+ Use the repository’s existing coding, testing, architecture, and PR conventions.
4
+
5
+ For normal engineering tasks, prefer Plan. Patch. Prove:
6
+
7
+ ```text
8
+ Inspect → Clarify → Plan → Prove → Patch → Review → PR
9
+ ```
10
+
11
+ Plan the change. Patch safely. Prove it before PR.
12
+
13
+ Do not start coding before inspecting relevant code.
14
+
15
+ Do not make product, architecture, auth, security, data migration, permission, tenancy, billing, or public API decisions without explicit human approval.
16
+
17
+ Follow the PR template and run the smallest meaningful validation before claiming work is complete.
18
+
19
+ If a task is too large for one focused PR, identify the smallest useful first task or ask for clarification.
@@ -0,0 +1,20 @@
1
+ ---
2
+ description: Use Plan. Patch. Prove for normal engineering tasks
3
+ alwaysApply: false
4
+ ---
5
+
6
+ When the user asks to implement a normal ticket, follow Plan. Patch. Prove:
7
+
8
+ ```text
9
+ Inspect → Clarify → Plan → Prove → Patch → Review → PR
10
+ ```
11
+
12
+ Inspect relevant code before editing.
13
+
14
+ Ask only blocking questions.
15
+
16
+ Define proof before patching.
17
+
18
+ Patch in small validated loops.
19
+
20
+ Review production readiness before PR.