Skip to content

Add persistent store navigation and clean Copilot-facing docs#24

Merged
Jurel89 merged 23 commits intomainfrom
improve/copilot-cli-ux-graph
Apr 18, 2026
Merged

Add persistent store navigation and clean Copilot-facing docs#24
Jurel89 merged 23 commits intomainfrom
improve/copilot-cli-ux-graph

Conversation

@Jurel89
Copy link
Copy Markdown
Owner

@Jurel89 Jurel89 commented Apr 18, 2026

Summary

  • add read-only omni navigation for state, wiki, notepad, shared memory, and trace stores, including omni wiki graph and omni wiki validate
  • document the new store/wiki CLI surface and align active setup/reference/wiki guidance with the current Copilot CLI plugin behavior
  • remove live Claude/Anthropic branding residue from active agents, skills, and helper docs while preserving historical docs outside this PR scope

Verification

  • python3 -m pytest -q tests/test_cli.py tests/test_wiki_validation.py tests/test_contract_external_cli.py tests/test_contract_validator.py
  • python3 scripts/verify_plugin_contract.py --all
  • manual CLI QA with seeded OMNI_HOME for state show, wiki graph, wiki validate, notepad show, shared-memory show, and trace timeline
  • python3 -m pytest -q (one pre-existing failure remains: tests/integration/test_copilot_cli_install.py::test_harness_runs_clean because local npm install -g @github/copilot lacks permissions in this environment)

Jurel89 and others added 12 commits April 18, 2026 02:56
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: e410b151e9

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread scripts/omni.py
Comment on lines +1025 to +1028
target = destination.rsplit("/", 1)[-1]
if target.endswith(".md"):
target = target[:-3]
targets.append(_slugify(target))
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Strip Markdown link fragments before slugifying targets

This logic treats links like [About](about.md#intro) as a target slug of about-md-intro because the fragment is never removed before the .md check, so omni wiki graph/omni wiki validate report a dangling link even when about exists. This can cause false validation failures in normal Markdown docs that use section anchors, especially if omni wiki validate is used as a CI integrity check.

Useful? React with 👍 / 👎.

Jurel89 and others added 11 commits April 18, 2026 03:19
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
@Jurel89 Jurel89 merged commit 32e1263 into main Apr 18, 2026
5 checks passed
@Jurel89 Jurel89 deleted the improve/copilot-cli-ux-graph branch April 18, 2026 09:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant