Skip to content

Package the reviewed ADHD Codex adapter - #1

Merged
andydrewie merged 2 commits into
agent/codex-compatible-v1from
agent/agent-plugins-v1
Aug 7, 2026
Merged

Package the reviewed ADHD Codex adapter#1
andydrewie merged 2 commits into
agent/codex-compatible-v1from
agent/agent-plugins-v1

Conversation

@andydrewie

Copy link
Copy Markdown
Owner

Summary

  • package the reviewed Codex adapter as Agent Plugins 1.0 version 0.1.4-codex.1
  • add the generated Codex 0.145 compatibility manifest
  • preserve explicit invocation, capacity checks, attribution, licensing, and side-effect boundaries
  • add persistent package validation and compatibility-branch CI coverage
  • clarify that upstream automatic activation does not apply to this adapter

Validation

  • dependency-free adapter validator
  • official Codex skill validator
  • official Codex legacy plugin validator
  • central catalog validation against vendored Agent Plugins schemas
  • clean diff check

@andydrewie
andydrewie marked this pull request as ready for review August 7, 2026 01:32
@andydrewie
andydrewie merged commit 9c473f8 into agent/codex-compatible-v1 Aug 7, 2026
4 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: 5926e4d68b

ℹ️ 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 on lines +215 to +216
if in_policy and stripped.startswith("allow_implicit_invocation:"):
values.append(stripped.split(":", 1)[1].strip().split(" #", 1)[0])

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 Parse the policy as YAML before accepting it

If allow_implicit_invocation is accidentally nested under another policy key, this indentation-insensitive scan still accepts the file; for example, policy: {nested: {allow_implicit_invocation: false}} passes this CI validator even though Codex no longer sees the required policy.allow_implicit_invocation: false setting. Since explicit-only activation is a load-bearing package contract, validate the parsed YAML structure and boolean value rather than matching any descendant line.

Useful? React with 👍 / 👎.

Comment on lines +17 to +19
r"^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)"
r"(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?"
r"(?:\+[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?$"

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 Reject invalid numeric prerelease identifiers

When a future package version contains a numeric prerelease identifier with a leading zero, such as 1.2.3-01 or 1.2.3-alpha.01, this regex accepts it even though strict Semantic Versioning rejects it and the Codex ingestion validator enforces that restriction. CI would therefore report a malformed manifest as valid until marketplace ingestion fails.

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