Skip to content

Package Capture independently - #3

Merged
foxsplendid merged 2 commits into
mainfrom
codex/general-project-release
Aug 10, 2026
Merged

Package Capture independently#3
foxsplendid merged 2 commits into
mainfrom
codex/general-project-release

Conversation

@foxsplendid

Copy link
Copy Markdown
Owner

What changed

Publishes Provenance as the general project-memory and context engine and adds a dedicated capture-v* Release workflow. Capture remains owned by the Provenance repository but is built as a deterministic ZIP with an adjacent SHA-256 file for users who only need conversation export.

Why

The suite needs one core memory engine while allowing the browser exporter to be downloaded without cloning or installing the full repository.

Validation

  • 304 tests passed, 4 skipped
  • deterministic Capture ZIP verified locally
  • release workflow and tag namespace validated
  • Capture archive privacy scan passed
  • no evidence-review development files are included

@foxsplendid
foxsplendid merged commit f7ab6f3 into main Aug 10, 2026
5 checks passed

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

Copy link
Copy Markdown

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: 1e3f1c0221

ℹ️ 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".

r"(?i)(?<![A-Za-z0-9/])[A-Z]:[\\/][^\r\n<>\"'`|]+"
)
_UNC_ABSOLUTE = re.compile(r"(?<![\\])\\\\[^\\/\s]+[\\/][^\r\n<>\"'`|]+")
_POSIX_ABSOLUTE = re.compile(r"(?<![A-Za-z0-9:/])/(?!/)[^\r\n<>\"'`|]+")

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 Redact POSIX paths that follow label colons

When an artifact contains a labelled absolute path such as source:/srv/secret/team/private.pdf, the colon in this negative lookbehind prevents _POSIX_ABSOLUTE from matching it. The complete path therefore persists in research-artifacts.json and is subsequently indexed by search.build, violating the documented path-free ingestion boundary; distinguish URL schemes without excluding every colon-prefixed POSIX path.

Useful? React with 👍 / 👎.

Comment thread provenance/context.py
)
_UNC_ABS_RE = re.compile(r"(?<![\\])\\\\[^\\/\s]+[\\/][^\r\n<>\"'`|]+")
_POSIX_ABS_RE = re.compile(
r"(?i)(?<![A-Za-z0-9:/])/(?!/)[^\r\n<>\"'`|)\]]+?"

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 Omit colon-prefixed paths from context capsules

For project or library text formatted as source:/srv/secret/team/private.pdf, this lookbehind rejects the path match, and the later generic redactor does not remove it. Both the JSON CLI and MCP capsule can consequently expose the absolute path despite the capsule's stated guarantee that all local paths are omitted.

Useful? React with 👍 / 👎.

"stage_failed",
"The project writeback completed but its memory snapshot could not be refreshed.",
)
return report

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 Preserve pending actions when portfolio refresh fails

If the post-writeback vault refresh raises an expected filesystem or decoding error, this direct return bypasses _finish, which is responsible for adding agent-fill, project-resolution, human-approval, and workspace-review actions from the already-populated summary. A partial run can therefore report nonzero pending counts but an empty action_required list, hiding the follow-up work the user still needs to perform.

Useful? React with 👍 / 👎.

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