@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.
- package/lib/starter-templates.js +111 -0
- package/package.json +1 -1
- package/template/.agents/skills/adopt/SKILL.md +95 -0
- package/template/.agents/skills/devflow/SKILL.md +61 -52
- package/template/.agents/skills/doctor/SKILL.md +84 -0
- package/template/.agents/skills/onboard/SKILL.md +129 -0
- package/template/.claude/skills/adopt/SKILL.md +95 -0
- package/template/.claude/skills/devflow/SKILL.md +61 -52
- package/template/.claude/skills/doctor/SKILL.md +84 -0
- package/template/.claude/skills/onboard/SKILL.md +129 -0
- package/template/AGENTS.md +95 -26
- package/template/devflow/context/coding-standards.md +20 -12
- package/template/devflow/context/current-stage.md +2 -1
- package/template/devflow/context/findings.md +6 -10
- package/template/devflow/context/project-overview.md +11 -12
|
@@ -1,19 +1,27 @@
|
|
|
1
|
-
# Coding Standards
|
|
1
|
+
# Coding Standards
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
##
|
|
6
|
+
## Architecture and Conventions
|
|
6
7
|
|
|
7
|
-
- Write
|
|
8
|
-
-
|
|
9
|
-
-
|
|
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
|
-
##
|
|
12
|
+
## Code Organization & Style
|
|
12
13
|
|
|
13
|
-
-
|
|
14
|
-
-
|
|
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
|
-
##
|
|
18
|
+
## Error Handling & Security
|
|
17
19
|
|
|
18
|
-
-
|
|
19
|
-
-
|
|
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.
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Findings Ledger
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> Review findings raised by `/security-review` or QA audits.
|
|
4
|
+
> Resolved findings are tracked with durable IDs.
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
- **Total Open P0/P1**: 0
|
|
7
|
+
- **Total Tracked**: 0
|
|
6
8
|
|
|
7
|
-
|
|
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
|
-
|
|
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
|
-
##
|
|
7
|
+
## 1. Project Summary
|
|
6
8
|
|
|
7
|
-
- **
|
|
8
|
-
- **
|
|
9
|
-
- **
|
|
9
|
+
- **Name**: [Project Name]
|
|
10
|
+
- **Description**: [One-line summary of project purpose]
|
|
11
|
+
- **Primary Stack**: [Framework / Language / Runtime]
|
|
10
12
|
|
|
11
|
-
##
|
|
13
|
+
## 2. Architecture & Modules
|
|
12
14
|
|
|
13
|
-
-
|
|
14
|
-
- **Backend**: [Framework / Database]
|
|
15
|
-
- **Deployment**: [Platform / Infrastructure]
|
|
15
|
+
- `src/` - Core application source code
|
|
16
16
|
|
|
17
|
-
##
|
|
17
|
+
## 3. Shipped Capabilities
|
|
18
18
|
|
|
19
|
-
-
|
|
20
|
-
- **Active Running ID**: None
|
|
19
|
+
- None recorded yet. Run `/onboard` or `/adopt` to initialize.
|