nova-cli 0.2.1 → 0.2.3
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.
- checksums.yaml +4 -4
- data/lib/nova/templates/nova.mdc +8 -3
- data/lib/nova.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b37fc476c794b5d8ef65085970ceda162fb4e3be7460c621572f4196c2123706
|
4
|
+
data.tar.gz: b301b2eaa9dbf98f9bc788353a7b6f124c3674a428a4692d2c9ca14fd7f1e5b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e3b7441eec4ee00b6fe79e63cc510fa40c75661401505ff1d8f0fac4bf270d393525abf2f94f7aa1c4f8196bb9a8db8702ec8ef3b1d9c0562a7cbd6bf7565e7
|
7
|
+
data.tar.gz: 4fe249bd630cc14c9d8d7d42e80cc5313dff4a751bd0fb93464b7c501ba8718ae28197611280ef41e6f299781c9a2edc540ce79ee9020a3c82e69ae506035a35
|
data/lib/nova/templates/nova.mdc
CHANGED
@@ -32,15 +32,17 @@ You are working in a Nova project that follows a structured product development
|
|
32
32
|
|
33
33
|
### When in shape/ (Documentation)
|
34
34
|
- Don't write code - documentation only
|
35
|
-
- Start with "why" before "what"
|
36
|
-
- Keep user value central
|
37
35
|
- Use Mermaid for diagrams
|
38
36
|
- Reference previous sections for traceability
|
37
|
+
- Delete example.md files once real files are generated in a given section
|
38
|
+
- Do not advance to the next section until told to do so
|
39
39
|
|
40
40
|
### When in code/ (Implementation)
|
41
|
+
- Always create a new branch before starting a new task
|
41
42
|
- Review shape/ documentation first
|
42
43
|
- Follow tasks in shape/4_tasks/
|
43
|
-
-
|
44
|
+
- When any task or subtask is completed, check it off in the appropriate task file
|
45
|
+
- After completing a subtask, commit your work to the new branch
|
44
46
|
|
45
47
|
### Code Quality Standards
|
46
48
|
- Rails conventions with RSpec tests
|
@@ -54,6 +56,9 @@ You are working in a Nova project that follows a structured product development
|
|
54
56
|
- Whenever you complete a task/subtask, check it off
|
55
57
|
- Update file tracking tables (⏳ → ✅)
|
56
58
|
|
59
|
+
### Change Requests
|
60
|
+
- When asked to make a change to the code, first analyze shape/ and update any impacted documentation
|
61
|
+
|
57
62
|
## Remember
|
58
63
|
- Keep things simple unless specified otherwise
|
59
64
|
- Be concise and do not repeat yourself
|
data/lib/nova.rb
CHANGED