@jakkrichm/create-nexus-devflow 2.0.6 → 2.0.8

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.
@@ -1,19 +1,27 @@
1
- # Coding Standards & Guidelines
1
+ # Coding Standards
2
2
 
3
- General engineering standards for code, tests, and documentation.
3
+ > Project conventions and rules to follow during development.
4
+ > Run `/onboard` (or `/adopt` for existing codebases) to tune these standards to your specific stack.
4
5
 
5
- ## Code Quality
6
+ ## Architecture and Conventions
6
7
 
7
- - Write clear, self-documenting code.
8
- - Avoid unnecessary complexity (prefer simple solutions over indirect abstractions).
9
- - Maintain type safety and static validation across module boundaries.
8
+ - Write clean, modular, and maintainable code with clear single responsibilities.
9
+ - Prefer TypeScript and explicit interfaces where available.
10
+ - Keep dependencies lean and justified.
10
11
 
11
- ## Testing & Verification
12
+ ## Code Organization & Style
12
13
 
13
- - Every change in `/40-Implement` must be verified in `/50-Verify`.
14
- - Prefer test-driven evidence and automated scripts where applicable.
14
+ - Structure source code following framework-native conventions.
15
+ - Keep functions focused and avoid deeply nested logic.
16
+ - Use consistent naming conventions (camelCase for functions/variables, PascalCase for components/types).
15
17
 
16
- ## Git & Commits
18
+ ## Error Handling & Security
17
19
 
18
- - Commit messages follow imperative summary format.
19
- - Create small, reviewed, and self-contained commits.
20
+ - Handle errors explicitly and provide meaningful error messages.
21
+ - Never hardcode credentials, secrets, or API keys in source code.
22
+ - Sanitize and validate all user inputs.
23
+
24
+ ## Testing & Quality
25
+
26
+ - Follow the TDD workflow for behavior-changing code units.
27
+ - Run tests and linting before completing features or fixes.
@@ -3,4 +3,5 @@
3
3
  - **Active Discovery ID**: None
4
4
  - **Active Running ID**: None
5
5
  - **Current Stage**: Idle
6
- - **Last Updated**: 2026-08-17
6
+ - **Last Completed Run**: None
7
+ - **Last Updated**: -
@@ -1,13 +1,9 @@
1
- # Audit Findings Ledger
1
+ # Findings Ledger
2
2
 
3
- Summary of audit findings, quality checks, security bugs, and debt tracked across DevFlow runs.
3
+ > Review findings raised by `/security-review` or QA audits.
4
+ > Resolved findings are tracked with durable IDs.
4
5
 
5
- ## Open Findings
6
+ - **Total Open P0/P1**: 0
7
+ - **Total Tracked**: 0
6
8
 
7
- | ID | Severity | Category | Title | Discovered Run | Status |
8
- | :- | :--- | :--- | :--- | :--- | :--- |
9
-
10
- ## Resolved Findings
11
-
12
- | ID | Severity | Category | Title | Resolved Run | Date |
13
- | :- | :--- | :--- | :--- | :--- | :--- |
9
+ _No findings recorded._
@@ -1,20 +1,19 @@
1
1
  # Project Overview
2
2
 
3
- Primary source of truth for the project context, architecture, tech stack, and active DevFlow stage status.
3
+ > **DevFlow Context Source of Truth.**
4
+ > Single AI-facing source of truth for project architecture, stack, and shipped capabilities.
5
+ > Run `/onboard` (for fresh projects) or `/adopt` (for existing codebases) to populate this file automatically.
4
6
 
5
- ## Application Summary
7
+ ## 1. Project Summary
6
8
 
7
- - **Project Name**: [Project Name]
8
- - **Goal**: [Project Goal Description]
9
- - **Target Audience**: [Target Users]
9
+ - **Name**: [Project Name]
10
+ - **Description**: [One-line summary of project purpose]
11
+ - **Primary Stack**: [Framework / Language / Runtime]
10
12
 
11
- ## Tech Stack
13
+ ## 2. Architecture & Modules
12
14
 
13
- - **Frontend**: [Framework / Language]
14
- - **Backend**: [Framework / Database]
15
- - **Deployment**: [Platform / Infrastructure]
15
+ - `src/` - Core application source code
16
16
 
17
- ## DevFlow Workspaces
17
+ ## 3. Shipped Capabilities
18
18
 
19
- - **Active Discovery ID**: None
20
- - **Active Running ID**: None
19
+ - None recorded yet. Run `/onboard` or `/adopt` to initialize.