Summary
socialforge currently has a small Codex compatibility issue: the Codex plugin validator rejects several skills because their frontmatter sets disable-model-invocation: true.
Changing those fields to false makes the plugin validate locally.
Environment
- Codex CLI:
codex-cli 0.128.0
- Validation command:
python C:\Users\indra\.codex\skills\.system\plugin-creator\scripts\validate_plugin.py C:\path\to\socialforge
Current Validation Error
The validator reports:
skill `assemble-document` frontmatter field `disable-model-invocation` must be false
skill `create-previews` frontmatter field `disable-model-invocation` must be false
skill `finalize-month` frontmatter field `disable-model-invocation` must be false
skill `manage-reviews` frontmatter field `disable-model-invocation` must be false
Proposed Fix
In each affected SKILL.md, change:
disable-model-invocation: true
to:
disable-model-invocation: false
Also consider changing the Codex plugin category from Productivity to Marketing in:
.codex-plugin/plugin.json
Local Verification
After applying only those four frontmatter changes plus the category metadata change, the plugin validates successfully with the Codex plugin validator.
Why
This keeps the existing skills available to Codex while satisfying the current Codex plugin ingestion schema.
Summary
socialforgecurrently has a small Codex compatibility issue: the Codex plugin validator rejects several skills because their frontmatter setsdisable-model-invocation: true.Changing those fields to
falsemakes the plugin validate locally.Environment
codex-cli 0.128.0python C:\Users\indra\.codex\skills\.system\plugin-creator\scripts\validate_plugin.py C:\path\to\socialforgeCurrent Validation Error
The validator reports:
Proposed Fix
In each affected
SKILL.md, change:to:
Also consider changing the Codex plugin category from
ProductivitytoMarketingin:Local Verification
After applying only those four frontmatter changes plus the category metadata change, the plugin validates successfully with the Codex plugin validator.
Why
This keeps the existing skills available to Codex while satisfying the current Codex plugin ingestion schema.