@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.
Files changed (45) hide show
  1. package/dist/commands/init.d.ts +10 -0
  2. package/dist/commands/init.d.ts.map +1 -1
  3. package/dist/commands/init.js +380 -116
  4. package/dist/commands/init.js.map +1 -1
  5. package/dist/commands/update.d.ts.map +1 -1
  6. package/dist/commands/update.js +6 -21
  7. package/dist/commands/update.js.map +1 -1
  8. package/dist/configurators/index.d.ts.map +1 -1
  9. package/dist/configurators/index.js +8 -7
  10. package/dist/configurators/index.js.map +1 -1
  11. package/dist/configurators/qoder.d.ts +7 -6
  12. package/dist/configurators/qoder.d.ts.map +1 -1
  13. package/dist/configurators/qoder.js +17 -9
  14. package/dist/configurators/qoder.js.map +1 -1
  15. package/dist/configurators/shared.d.ts +2 -0
  16. package/dist/configurators/shared.d.ts.map +1 -1
  17. package/dist/configurators/shared.js +18 -0
  18. package/dist/configurators/shared.js.map +1 -1
  19. package/dist/migrations/manifests/0.5.0-beta.9.json +48 -0
  20. package/dist/templates/common/skills/brainstorm.md +47 -4
  21. package/dist/templates/opencode/plugins/inject-workflow-state.js +21 -7
  22. package/dist/templates/shared-hooks/inject-workflow-state.py +21 -8
  23. package/dist/templates/shared-hooks/session-start.py +14 -4
  24. package/dist/templates/trellis/config.yaml +6 -0
  25. package/dist/templates/trellis/index.d.ts +0 -1
  26. package/dist/templates/trellis/index.d.ts.map +1 -1
  27. package/dist/templates/trellis/index.js +0 -2
  28. package/dist/templates/trellis/index.js.map +1 -1
  29. package/dist/templates/trellis/scripts/common/types.py +0 -2
  30. package/dist/templates/trellis/workflow.md +8 -3
  31. package/dist/utils/project-detector.d.ts +2 -0
  32. package/dist/utils/project-detector.d.ts.map +1 -1
  33. package/dist/utils/project-detector.js +120 -11
  34. package/dist/utils/project-detector.js.map +1 -1
  35. package/dist/utils/task-json.d.ts +46 -0
  36. package/dist/utils/task-json.d.ts.map +1 -0
  37. package/dist/utils/task-json.js +49 -0
  38. package/dist/utils/task-json.js.map +1 -0
  39. package/package.json +1 -1
  40. package/dist/templates/markdown/spec/backend/directory-structure.md +0 -292
  41. package/dist/templates/markdown/spec/backend/index.md +0 -40
  42. package/dist/templates/markdown/spec/backend/script-conventions.md +0 -742
  43. package/dist/templates/markdown/spec/guides/code-reuse-thinking-guide.md +0 -118
  44. package/dist/templates/markdown/spec/guides/cross-platform-thinking-guide.md +0 -394
  45. 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**.