nova-cli 0.2.0 → 0.2.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38ce58b8ad7d0916257e95ca92e2a48dfcf64ecbe06eef34801467b94ac23258
4
- data.tar.gz: b24a76aaca18e39939567878ac56a7c525cf2c16d780d9016c4a9c207ac09ae2
3
+ metadata.gz: 3bbdbaa6c0ffb47c8b75e42ac538e62c852e9c38c4bfca103351c447b6054fde
4
+ data.tar.gz: 84b21e95ff413a181df3be86ef3a6c92bef2032da1da2da7ce4f2a2552dd64b8
5
5
  SHA512:
6
- metadata.gz: d4d32571d86db6d71251046763c758ebd6fbba19ae9dfad6dd46074751562eaa9228ad6d829e1efd2aa18256cc20c100d49471260d1c1737cf2deaf1eb5458ce
7
- data.tar.gz: 69d6828bf2158e249718d130ea90a9816dfe8fa51a8a8190d57afb1678928ba8e29d6a68e4abff5e1bf3af446868858645d77f566634db8cdc645f7c350aad10
6
+ metadata.gz: 9827db12ba3a0f8c316ada9926b66ff07df568b74120391ece237d5d89a76c7b08afed520324de73b4fea2928c148bc5aefd95806435b43f7673bd2526744634
7
+ data.tar.gz: 3447a04dc45738c19eb9ba026bba5982ba6eb223ea63c6fc63502b558d3f9c62540913f071783ec0cb2f066fbfd85f94e66663eb54e43bd022aabc40360e0c9b
@@ -22,7 +22,7 @@ You are working in a Nova project that follows a structured product development
22
22
  - `code/` - Application implementation
23
23
 
24
24
  ## Workflow
25
- 1. **Big Picture**: Define strategic vision and goals
25
+ 1. **Big Picture**: Define PRD and flowchart
26
26
  2. **User Stories**: Break down into specific user needs
27
27
  3. **Design System**: Establish visual language
28
28
  4. **Tasks**: Create actionable implementation steps
@@ -31,18 +31,17 @@ You are working in a Nova project that follows a structured product development
31
31
  ## Key Rules
32
32
 
33
33
  ### When in shape/ (Documentation)
34
- - Never write code - documentation only
35
- - Start with "why" before "what"
36
- - Keep user value central
34
+ - Don't write code - documentation only
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
39
38
 
40
39
  ### When in code/ (Implementation)
40
+ - Always create a new branch before starting a new task
41
41
  - Review shape/ documentation first
42
42
  - Follow tasks in shape/4_tasks/
43
- - Update task checkboxes as you complete work
44
- - Start with the core page/feature, then pause for review
45
- - Use Structs for hardcoded data (will become models later)
43
+ - When any task or subtask is completed, check it off in the appropriate task file
44
+ - After completing a subtask, commit your work to the new branch
46
45
 
47
46
  ### Code Quality Standards
48
47
  - Rails conventions with RSpec tests
@@ -52,13 +51,13 @@ You are working in a Nova project that follows a structured product development
52
51
  - Write E2E tests with Cypress
53
52
 
54
53
  ### Task Management
55
- - Work through tasks sequentially
54
+ - Work through tasks sequentially in /tasks
55
+ - Whenever you complete a task/subtask, check it off
56
56
  - Update file tracking tables (⏳ → ✅)
57
- - Complete foundational tasks before custom features
58
- - Pause after major milestones for user feedback
59
57
 
60
58
  ## Remember
61
- - Maintain documentation-to-code traceability
62
59
  - Keep things simple unless specified otherwise
60
+ - Be concise and do not repeat yourself
61
+ - Maintain documentation-to-code traceability
63
62
  - Focus on user value in every decision
64
63
  - This is an iterative process - expect refinements
@@ -1,3 +1 @@
1
- This Nova project uses cursor rules for AI guidance located at .cursor/rules/nova.mdc.
2
-
3
- The rules provide comprehensive guidance for the entire Nova workflow from shape to code.
1
+ This Nova project uses cursor rules for AI guidance located at .cursor/rules/nova.mdc. Please review before proceeding.
data/lib/nova.rb CHANGED
@@ -2,5 +2,5 @@ require_relative 'nova/cli'
2
2
  require_relative 'nova/generator'
3
3
 
4
4
  module Nova
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.2'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nova-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Francis
@@ -47,7 +47,6 @@ files:
47
47
  - lib/nova/templates/tasks_examples/2_generate_static_pages.md
48
48
  - lib/nova/templates/user_story_example.md
49
49
  - lib/nova/templates/windsurfrules_template.txt
50
- - lib/nova/version.rb
51
50
  homepage: https://github.com/LaunchPadLab/nova
52
51
  licenses:
53
52
  - MIT
data/lib/nova/version.rb DELETED
@@ -1,3 +0,0 @@
1
- module Nova
2
- VERSION = "0.3.0"
3
- end