Conversation
Aligns WorkStation's .console file names with the rest of the Velascat platform repos. WorkStation was the only repo using non-standard names (active-task / directives / mission-log / objectives) — every other platform repo (OperationsCenter, CxRP, SwitchBoard, OperatorConsole, Custodian, VideoFoundry, SourceRegistry, RxP, ExecutorRuntime) uses task / guidelines / log / backlog. Renames (git mv preserves history): - active-task.md → task.md - directives.md → guidelines.md - mission-log.md → log.md - objectives.md → backlog.md Also updates: - .gitignore allowlist to use the standard names - internal cross-references between the four files No code or tooling references the old names; renames are filename-only. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3 tasks
Velascat
added a commit
that referenced
this pull request
May 8, 2026
…al-API findings (#9) OC #85 + ER #6 landed the Archon real-workflow integration on 2026-05-07. Same-day live validation against a built-from-source container surfaced three findings; this PR folds them back into the canonical docs. archon-real-workflow-integration.md: - Status: "Approved design — implementation pending" → "Shipped 2026-05-07" with PR refs. - Workflow-name table corrected to the real bundled defaults Archon ships (archon-assist / archon-fix-github-issue / archon-test-loop-dag / archon-refactor-safely). Earlier-draft archival note kept inline so history is visible. - New "Real-API findings (2026-05-07 live validation)" section near the bottom documenting F1 (workflow-name divergence, now fixed in OC), F2 (/api/workflows is cwd-scoped — empty without ?cwd= linking to a registered codebase), F3 (kickoff returns 200 + {accepted,status: "started"} — confirms the AsyncHttpRunner upgrade was correct). - "What's still outstanding" pulled out of "Out of scope" so it reads as forward-looking rather than retrospective. archon-setup.md: - "deferred" / "health-only probe" wording → "shipped" wording with cross-link to the design doc + Real-API findings section. - runtime_kind documented as http_async (production path); ABC + ManualRunner closure path noted as test-only. - --list-workflows usage documented including the expected "no workflows returned" signal against a fresh container (cwd-scoped discovery; not a bug). - Deferred section refreshed: auto-approve policy, SSE streaming, and the new --cwd flag enhancement on the operator probe. No code changes in this PR; OC's commit (chore/archon-defaults-from-real-archon) ships the matching DEFAULT_WORKFLOW_NAMES correction and tests. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Aligns WorkStation's `.console` file names with the rest of the Velascat platform repos. WorkStation was the only repo using non-standard names; every other platform repo uses `task / guidelines / log / backlog`.
Renames
`git mv` preserves history.
Other changes
Verified — no other refs to the old names
`grep -rln 'active-task|directives|mission-log|objectives' --include=.md --include=.py --include=.sh --include=.yml` finds only the .console files themselves. No code, tooling, CI, or external docs reference them.
Test plan
🤖 Generated with Claude Code