@mindfoldhq/trellis 0.5.0-beta.8 → 0.5.0-beta.9
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/dist/commands/init.d.ts +10 -0
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +380 -116
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/update.d.ts.map +1 -1
- package/dist/commands/update.js +6 -21
- package/dist/commands/update.js.map +1 -1
- package/dist/configurators/index.d.ts.map +1 -1
- package/dist/configurators/index.js +8 -7
- package/dist/configurators/index.js.map +1 -1
- package/dist/configurators/qoder.d.ts +7 -6
- package/dist/configurators/qoder.d.ts.map +1 -1
- package/dist/configurators/qoder.js +17 -9
- package/dist/configurators/qoder.js.map +1 -1
- package/dist/configurators/shared.d.ts +2 -0
- package/dist/configurators/shared.d.ts.map +1 -1
- package/dist/configurators/shared.js +18 -0
- package/dist/configurators/shared.js.map +1 -1
- package/dist/migrations/manifests/0.5.0-beta.9.json +48 -0
- package/dist/templates/common/skills/brainstorm.md +47 -4
- package/dist/templates/opencode/plugins/inject-workflow-state.js +21 -7
- package/dist/templates/shared-hooks/inject-workflow-state.py +21 -8
- package/dist/templates/shared-hooks/session-start.py +14 -4
- package/dist/templates/trellis/config.yaml +6 -0
- package/dist/templates/trellis/index.d.ts +0 -1
- package/dist/templates/trellis/index.d.ts.map +1 -1
- package/dist/templates/trellis/index.js +0 -2
- package/dist/templates/trellis/index.js.map +1 -1
- package/dist/templates/trellis/scripts/common/types.py +0 -2
- package/dist/templates/trellis/workflow.md +8 -3
- package/dist/utils/project-detector.d.ts +2 -0
- package/dist/utils/project-detector.d.ts.map +1 -1
- package/dist/utils/project-detector.js +120 -11
- package/dist/utils/project-detector.js.map +1 -1
- package/dist/utils/task-json.d.ts +46 -0
- package/dist/utils/task-json.d.ts.map +1 -0
- package/dist/utils/task-json.js +49 -0
- package/dist/utils/task-json.js.map +1 -0
- package/package.json +1 -1
- package/dist/templates/markdown/spec/backend/directory-structure.md +0 -292
- package/dist/templates/markdown/spec/backend/index.md +0 -40
- package/dist/templates/markdown/spec/backend/script-conventions.md +0 -742
- package/dist/templates/markdown/spec/guides/code-reuse-thinking-guide.md +0 -118
- package/dist/templates/markdown/spec/guides/cross-platform-thinking-guide.md +0 -394
- package/dist/templates/trellis/scripts/create_bootstrap.py +0 -298
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# Backend Development Guidelines
|
|
2
|
-
|
|
3
|
-
> Best practices for backend development in this project.
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Overview
|
|
8
|
-
|
|
9
|
-
This directory contains guidelines for backend development. Fill in each file with your project's specific conventions.
|
|
10
|
-
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
## Guidelines Index
|
|
14
|
-
|
|
15
|
-
| Guide | Description | Status |
|
|
16
|
-
|-------|-------------|--------|
|
|
17
|
-
| [Directory Structure](./directory-structure.md) | Module organization and file layout | Done |
|
|
18
|
-
| [Script Conventions](./script-conventions.md) | Python script standards for .trellis/scripts/ | Done |
|
|
19
|
-
| [Error Handling](./error-handling.md) | Error types, handling strategies | Done |
|
|
20
|
-
| [Quality Guidelines](./quality-guidelines.md) | Code standards, forbidden patterns | Done |
|
|
21
|
-
| [Logging Guidelines](./logging-guidelines.md) | Structured logging, log levels | Done |
|
|
22
|
-
| [Migrations](./migrations.md) | Version migration system for template files | Done |
|
|
23
|
-
| [Database Guidelines](./database-guidelines.md) | ORM patterns, queries, migrations | N/A (CLI project) |
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
## How to Fill These Guidelines
|
|
28
|
-
|
|
29
|
-
For each guideline file:
|
|
30
|
-
|
|
31
|
-
1. Document your project's **actual conventions** (not ideals)
|
|
32
|
-
2. Include **code examples** from your codebase
|
|
33
|
-
3. List **forbidden patterns** and why
|
|
34
|
-
4. Add **common mistakes** your team has made
|
|
35
|
-
|
|
36
|
-
The goal is to help AI assistants and new team members understand how YOUR project works.
|
|
37
|
-
|
|
38
|
-
---
|
|
39
|
-
|
|
40
|
-
**Language**: All documentation should be written in **English**.
|