Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ preview lifecycle for stable remote lanes live in `launchplane`.
- [../README.md](../README.md) for the current bootstrap scope and command
surface.
- [ARCHITECTURE.md](ARCHITECTURE.md) for the workspace-first ownership model.
- [roles.md](roles.md) for shared Codex role expectations.
- [roles.md](roles.md) for shared Every Code role expectations.
- [tooling/workspace-cli.md](tooling/workspace-cli.md) for the workspace
command surface and generated-output contract.
- [tooling/artifact-inputs.md](tooling/artifact-inputs.md) for the repo-owned
Expand Down
2 changes: 1 addition & 1 deletion docs/roles.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Shared Roles

Purpose

- Define role expectations and outputs for Codex work that applies across
- Define role expectations and outputs for Every Code work that applies across
tenant repos and the generated workspace root.

When
Expand Down
6 changes: 3 additions & 3 deletions odoo_devkit/workspace_cockpit.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class WorkspaceCockpitManifest:
docs_working_split_lines: tuple[str, ...]
docs_operational_note_lines: tuple[str, ...]
session_prompt_rule_lines: tuple[str, ...]
plans_directory: str = "~/.codex/plans"
plans_directory: str = "~/.code/plans"

@property
def manifest_directory(self) -> Path:
Expand Down Expand Up @@ -89,7 +89,7 @@ def load_workspace_cockpit_manifest(manifest_path: Path) -> WorkspaceCockpitMani
session_prompt_rule_lines=(
_read_string_tuple(session_prompt_table, "working_rules") or _default_session_prompt_rule_lines()
),
plans_directory=_read_optional_string(manifest_data, "plans_directory") or "~/.codex/plans",
plans_directory=_read_optional_string(manifest_data, "plans_directory") or "~/.code/plans",
)


Expand Down Expand Up @@ -365,7 +365,7 @@ def _default_docs_working_split_lines() -> tuple[str, ...]:


def _default_docs_operational_note_lines() -> tuple[str, ...]:
return ("Historical plans remain available under `/Users/cbusillo/.codex/plans/` when you need rationale or prior sequencing.",)
return ("Historical plans normally live under `/Users/cbusillo/.code/plans/`; check `/Users/cbusillo/.codex/plans/` only for legacy rationale or prior sequencing.",)


def _default_session_prompt_rule_lines() -> tuple[str, ...]:
Expand Down
4 changes: 2 additions & 2 deletions templates/workspace-cockpit/workspace-cockpit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
schema_version = 1
plans_directory = "~/.codex/plans"
plans_directory = "~/.code/plans"

[guidance.agents]
first_reads = [
Expand Down Expand Up @@ -34,7 +34,7 @@ working_split = [
"Launchplane PR previews replace any durable shared `dev` lane.",
]
operational_notes = [
"Historical plans remain available under `/Users/cbusillo/.codex/plans/` when you need rationale or prior sequencing.",
"Historical plans normally live under `/Users/cbusillo/.code/plans/`; check `/Users/cbusillo/.codex/plans/` only for legacy rationale or prior sequencing.",
]

[guidance.session_prompt]
Expand Down