rrce-workflow 0.2.7 → 0.2.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.
@@ -48,17 +48,13 @@ Non-Negotiables
48
48
  6. Close the loop in `meta.json` when working within a task by setting `agents.documentation.status`, refreshing `checklist`, and updating overall `status`.
49
49
 
50
50
  Path Resolution
51
- - Storage mode: Determined by `config.yaml`storage.mode`` global config → default (`global`)
52
- - `global`: Data in `~/.rrce-workflow/workspaces/<workspace-name>/`
53
- - `workspace`: Data in `<workspace>/.rrce-workflow/`
54
- - `both`: **Dual storage** - data stored in BOTH locations simultaneously
55
- - Primary (for reads): `<workspace>/.rrce-workflow/`
56
- - Secondary (auto-synced): `~/.rrce-workflow/workspaces/<workspace-name>/`
57
- - When writing, always write to `{{RRCE_DATA}}` - the system ensures both locations stay in sync
58
- - Data path: `{{RRCE_DATA}}` (resolves to primary storage based on mode)
59
- - Global home: `{{RRCE_HOME}}` - **To resolve:** read `.rrce-workflow/config.yaml` → `storage.globalPath`, or default `~/.rrce-workflow`
60
- - Workspace root: `{{WORKSPACE_ROOT}}` (auto-detected or via `$RRCE_WORKSPACE`)
61
- - Workspace name: `{{WORKSPACE_NAME}}` (from config or directory name)
51
+ **Config file**: `.rrce-workflow/config.yaml` - Read this first.
52
+
53
+ **How to resolve `{{RRCE_DATA}}`**:
54
+ 1. Read `config.yaml` get `storage.mode` and `project.name`
55
+ 2. Resolve: `workspace` → `.rrce-workflow/` | `global` `{{RRCE_HOME}}/workspaces/<name>/` | `both` → `.rrce-workflow/`
56
+
57
+ **How to resolve `{{RRCE_HOME}}`**: `config.yaml` `storage.globalPath` or default `~/.rrce-workflow`
62
58
 
63
59
  Cross-Project References
64
60
  - Reference another project's context: `{{RRCE_HOME}}/workspaces/<other-project>/knowledge/`
@@ -52,14 +52,13 @@ Non-Negotiables
52
52
  6. Update `meta.json` as you proceed so statuses stay accurate.
53
53
 
54
54
  Path Resolution
55
- - **Config file**: `.rrce-workflow/config.yaml` (read this first to resolve paths)
56
- - Storage mode: Determined by `config.yaml` → `storage.mode` (default: `global`)
57
- - `global`: Data in `{{RRCE_HOME}}/workspaces/<workspace-name>/`
58
- - `workspace`: Data in `<workspace>/.rrce-workflow/`
59
- - `both`: Dual storage - data in BOTH locations
60
- - Data path: `{{RRCE_DATA}}` (resolves to primary storage based on mode)
61
- - Global home: `{{RRCE_HOME}}` - **To resolve:** read `config.yaml` → `storage.globalPath`, or default `~/.rrce-workflow`
62
- - Workspace name: `{{WORKSPACE_NAME}}` (from `config.yaml` → `project.name`)
55
+ **Config file**: `.rrce-workflow/config.yaml` - Read this first.
56
+
57
+ **How to resolve `{{RRCE_DATA}}`**:
58
+ 1. Read `config.yaml` get `storage.mode` and `project.name`
59
+ 2. Resolve: `workspace` → `.rrce-workflow/` | `global` `{{RRCE_HOME}}/workspaces/<name>/` | `both` `.rrce-workflow/`
60
+
61
+ **How to resolve `{{RRCE_HOME}}`**: `config.yaml` → `storage.globalPath` or default `~/.rrce-workflow`
63
62
 
64
63
  Cross-Project References
65
64
  - Reference another project's context: `{{RRCE_HOME}}/workspaces/<other-project>/knowledge/`
@@ -34,18 +34,24 @@ Non-Negotiables
34
34
  6. Keep output actionable and scannable; use structured sections.
35
35
 
36
36
  Path Resolution
37
- - **Config file**: `.rrce-workflow/config.yaml` (read this first to resolve paths)
38
- - Storage mode: Determined by `config.yaml` → `storage.mode` (default: `global`)
39
- - `global`: Data stored in `{{RRCE_HOME}}/workspaces/<workspace-name>/`
40
- - `workspace`: Data stored in `<workspace>/.rrce-workflow/`
41
- - `both`: **Dual storage** - data in BOTH locations
42
- - Data path: `{{RRCE_DATA}}` (resolves to primary storage based on mode)
43
- - Global home: `{{RRCE_HOME}}` - **To resolve:**
44
- 1. Read `.rrce-workflow/config.yaml`
45
- 2. If `storage.globalPath` exists, use that value
46
- 3. Otherwise, default to `~/.rrce-workflow`
47
- - Workspace root: `{{WORKSPACE_ROOT}}` (auto-detected or via `$RRCE_WORKSPACE`)
48
- - Workspace name: `{{WORKSPACE_NAME}}` (from `config.yaml` → `project.name` or directory name)
37
+ **Config file**: `.rrce-workflow/config.yaml` - Read this first to resolve all paths.
38
+
39
+ **How to resolve `{{RRCE_DATA}}`** (primary data path):
40
+ 1. Read `.rrce-workflow/config.yaml`
41
+ 2. Get `storage.mode` (default: `global`) and `project.name`
42
+ 3. Resolve based on mode:
43
+ - `workspace` → `<workspace>/.rrce-workflow/`
44
+ - `global` → `{{RRCE_HOME}}/workspaces/<project.name>/`
45
+ - `both` → `<workspace>/.rrce-workflow/` (primary), synced to global
46
+
47
+ **How to resolve `{{RRCE_HOME}}`** (global home):
48
+ 1. Read `.rrce-workflow/config.yaml`
49
+ 2. If `storage.globalPath` exists, use that value
50
+ 3. Otherwise, default to `~/.rrce-workflow`
51
+
52
+ **Other variables:**
53
+ - `{{WORKSPACE_ROOT}}` = Current workspace directory
54
+ - `{{WORKSPACE_NAME}}` = `config.yaml` → `project.name`
49
55
 
50
56
  Cross-Project References
51
57
  - To reference another project's context: `{{RRCE_HOME}}/workspaces/<other-project-name>/knowledge/`
@@ -44,17 +44,13 @@ Non-Negotiables
44
44
  6. Keep the written plan under 500 lines and reference supporting materials explicitly.
45
45
 
46
46
  Path Resolution
47
- - Storage mode: Determined by `config.yaml`storage.mode`` global config → default (`global`)
48
- - `global`: Data in `~/.rrce-workflow/workspaces/<workspace-name>/`
49
- - `workspace`: Data in `<workspace>/.rrce-workflow/`
50
- - `both`: **Dual storage** - data stored in BOTH locations simultaneously
51
- - Primary (for reads): `<workspace>/.rrce-workflow/`
52
- - Secondary (auto-synced): `~/.rrce-workflow/workspaces/<workspace-name>/`
53
- - When writing, always write to `{{RRCE_DATA}}` - the system ensures both locations stay in sync
54
- - Data path: `{{RRCE_DATA}}` (resolves to primary storage based on mode)
55
- - Global home: `{{RRCE_HOME}}` - **To resolve:** read `.rrce-workflow/config.yaml` → `storage.globalPath`, or default `~/.rrce-workflow`
56
- - Workspace root: `{{WORKSPACE_ROOT}}` (auto-detected or via `$RRCE_WORKSPACE`)
57
- - Workspace name: `{{WORKSPACE_NAME}}` (from config or directory name)
47
+ **Config file**: `.rrce-workflow/config.yaml` - Read this first.
48
+
49
+ **How to resolve `{{RRCE_DATA}}`**:
50
+ 1. Read `config.yaml` get `storage.mode` and `project.name`
51
+ 2. Resolve: `workspace` → `.rrce-workflow/` | `global` `{{RRCE_HOME}}/workspaces/<name>/` | `both` → `.rrce-workflow/`
52
+
53
+ **How to resolve `{{RRCE_HOME}}`**: `config.yaml` `storage.globalPath` or default `~/.rrce-workflow`
58
54
 
59
55
  Cross-Project References
60
56
  - Reference another project's context: `{{RRCE_HOME}}/workspaces/<other-project>/knowledge/`
@@ -38,17 +38,13 @@ Non-Negotiables
38
38
  6. Keep the final brief under 500 lines and reference concrete sources whenever possible.
39
39
 
40
40
  Path Resolution
41
- - Storage mode: Determined by `config.yaml`storage.mode`` global config → default (`global`)
42
- - `global`: Data in `~/.rrce-workflow/workspaces/<workspace-name>/`
43
- - `workspace`: Data in `<workspace>/.rrce-workflow/`
44
- - `both`: **Dual storage** - data stored in BOTH locations simultaneously
45
- - Primary (for reads): `<workspace>/.rrce-workflow/`
46
- - Secondary (auto-synced): `~/.rrce-workflow/workspaces/<workspace-name>/`
47
- - When writing, always write to `{{RRCE_DATA}}` - the system ensures both locations stay in sync
48
- - Data path: `{{RRCE_DATA}}` (resolves to primary storage based on mode)
49
- - Global home: `{{RRCE_HOME}}` - **To resolve:** read `.rrce-workflow/config.yaml` → `storage.globalPath`, or default `~/.rrce-workflow`
50
- - Workspace root: `{{WORKSPACE_ROOT}}` (auto-detected or via `$RRCE_WORKSPACE`)
51
- - Workspace name: `{{WORKSPACE_NAME}}` (from config or directory name)
41
+ **Config file**: `.rrce-workflow/config.yaml` - Read this first.
42
+
43
+ **How to resolve `{{RRCE_DATA}}`**:
44
+ 1. Read `config.yaml` get `storage.mode` and `project.name`
45
+ 2. Resolve: `workspace` → `.rrce-workflow/` | `global` `{{RRCE_HOME}}/workspaces/<name>/` | `both` → `.rrce-workflow/`
46
+
47
+ **How to resolve `{{RRCE_HOME}}`**: `config.yaml` `storage.globalPath` or default `~/.rrce-workflow`
52
48
 
53
49
  Cross-Project References
54
50
  - Reference another project's context: `{{RRCE_HOME}}/workspaces/<other-project>/knowledge/`
@@ -38,17 +38,13 @@ Non-Negotiables
38
38
  5. Record gaps or follow-up items in a checklist inside the file you touched so future runs can close them.
39
39
 
40
40
  Path Resolution
41
- - Storage mode: Determined by `config.yaml`storage.mode`` global config → default (`global`)
42
- - `global`: Data in `~/.rrce-workflow/workspaces/<workspace-name>/`
43
- - `workspace`: Data in `<workspace>/.rrce-workflow/`
44
- - `both`: **Dual storage** - data stored in BOTH locations simultaneously
45
- - Primary (for reads): `<workspace>/.rrce-workflow/`
46
- - Secondary (auto-synced): `~/.rrce-workflow/workspaces/<workspace-name>/`
47
- - When writing, always write to `{{RRCE_DATA}}` - the system ensures both locations stay in sync
48
- - Data path: `{{RRCE_DATA}}` (resolves to primary storage based on mode)
49
- - Global home: `{{RRCE_HOME}}` - **To resolve:** read `.rrce-workflow/config.yaml` → `storage.globalPath`, or default `~/.rrce-workflow`
50
- - Workspace root: `{{WORKSPACE_ROOT}}` (auto-detected or via `$RRCE_WORKSPACE`)
51
- - Workspace name: `{{WORKSPACE_NAME}}` (from config or directory name)
41
+ **Config file**: `.rrce-workflow/config.yaml` - Read this first.
42
+
43
+ **How to resolve `{{RRCE_DATA}}`**:
44
+ 1. Read `config.yaml` get `storage.mode` and `project.name`
45
+ 2. Resolve: `workspace` → `.rrce-workflow/` | `global` `{{RRCE_HOME}}/workspaces/<name>/` | `both` → `.rrce-workflow/`
46
+
47
+ **How to resolve `{{RRCE_HOME}}`**: `config.yaml` `storage.globalPath` or default `~/.rrce-workflow`
52
48
 
53
49
  Cross-Project References
54
50
  - Reference another project's context: `{{RRCE_HOME}}/workspaces/<other-project>/knowledge/`
@@ -1,6 +1,6 @@
1
1
  <!--
2
2
  RRCE Template Variables:
3
- - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow.yaml)
3
+ - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow/config.yaml)
4
4
  - global: {{RRCE_HOME}}/workspaces/<workspace-name>/
5
5
  - workspace: <workspace>/.rrce-workflow/
6
6
  - both: <workspace>/.rrce-workflow/ (primary, auto-synced to global)
@@ -1,6 +1,6 @@
1
1
  <!--
2
2
  RRCE Template Variables:
3
- - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow.yaml)
3
+ - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow/config.yaml)
4
4
  - global: {{RRCE_HOME}}/workspaces/<workspace-name>/
5
5
  - workspace: <workspace>/.rrce-workflow/
6
6
  - both: <workspace>/.rrce-workflow/ (primary, auto-synced to global)
@@ -1,6 +1,6 @@
1
1
  <!--
2
2
  RRCE Template Variables:
3
- - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow.yaml)
3
+ - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow/config.yaml)
4
4
  - global: {{RRCE_HOME}}/workspaces/<workspace-name>/
5
5
  - workspace: <workspace>/.rrce-workflow/
6
6
  - both: <workspace>/.rrce-workflow/ (primary, auto-synced to global)
@@ -1,6 +1,6 @@
1
1
  <!--
2
2
  RRCE Template Variables:
3
- - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow.yaml)
3
+ - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow/config.yaml)
4
4
  - global: {{RRCE_HOME}}/workspaces/<workspace-name>/
5
5
  - workspace: <workspace>/.rrce-workflow/
6
6
  - both: <workspace>/.rrce-workflow/ (primary, auto-synced to global)
@@ -1,6 +1,6 @@
1
1
  <!--
2
2
  RRCE Template Variables:
3
- - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow.yaml)
3
+ - {{RRCE_DATA}}: Primary storage path (resolves based on storage mode in .rrce-workflow/config.yaml)
4
4
  - global: {{RRCE_HOME}}/workspaces/<workspace-name>/
5
5
  - workspace: <workspace>/.rrce-workflow/
6
6
  - both: <workspace>/.rrce-workflow/ (primary, auto-synced to global)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rrce-workflow",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "RRCE-Workflow TUI - Agentic code workflow generator for AI-assisted development",
5
5
  "author": "RRCE Team",
6
6
  "license": "MIT",