Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
295 changes: 227 additions & 68 deletions .agents/plugins/marketplace.json

Large diffs are not rendered by default.

17 changes: 11 additions & 6 deletions .github/workflows/validate-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,17 @@ jobs:
run: |
python3 scripts/generate_plugins_json.py
if ! git diff --quiet -- plugins.json .agents/plugins/marketplace.json plugins; then
echo "::notice::marketplace artifacts were out of sync — auto-committing"
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add plugins.json .agents/plugins/marketplace.json plugins
git commit -m "chore: sync marketplace artifacts with README"
git push
echo "::notice::marketplace artifacts were out of sync"
if [ "${{ github.event_name }}" = "push" ]; then
echo "::notice::auto-committing synced artifacts"
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add plugins.json .agents/plugins/marketplace.json plugins
git commit -m "chore: sync marketplace artifacts with README"
git push
else
echo "::notice::skipping push on ${{ github.event_name }} (detached HEAD on PR merge ref)"
fi
Comment on lines +47 to +49
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 Fail PR runs when regenerated artifacts differ

In .github/workflows/validate-plugins.yml, the pull_request path now only logs a notice when git diff detects out-of-sync generated artifacts and then exits successfully, because the else branch at lines 47-49 does not exit 1. This means PR checks can pass with stale plugins.json, .agents/plugins/marketplace.json, or mirrored plugins/** content, so reviewers may merge unvalidated generated state and only discover drift after merge on push events.

Useful? React with 👍 / 👎.

else
echo "marketplace artifacts are up to date"
fi
3 changes: 3 additions & 0 deletions plugins/6Delta9/task-scheduler-codex-plugin/.app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"apps": {}
}
16 changes: 16 additions & 0 deletions plugins/6Delta9/task-scheduler-codex-plugin/.mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"mcpServers": {
"taskScheduler": {
"command": "python",
"args": [
"./scripts/mcp_server.py"
],
"cwd": ".",
"env": {
"PYTHONUTF8": "1"
},
"startup_timeout_sec": 20,
"tool_timeout_sec": 60
}
}
}
3 changes: 3 additions & 0 deletions plugins/6Delta9/task-scheduler-codex-plugin/hooks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"hooks": []
}
15 changes: 15 additions & 0 deletions plugins/AlexMi64/codex-project-autopilot/hooks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "py -3 ./scripts/post_write_codex_agent_guardrail.py || python ./scripts/post_write_codex_agent_guardrail.py || python3 ./scripts/post_write_codex_agent_guardrail.py"
}
]
}
]
}
}
37 changes: 37 additions & 0 deletions plugins/BestLemoon/codex-seo/.mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"mcpServers": {
"dataforseo": {
"command": "npx",
"args": [
"-y",
"dataforseo-mcp-server"
],
"env": {
"DATAFORSEO_USERNAME": "${DATAFORSEO_USERNAME}",
"DATAFORSEO_PASSWORD": "${DATAFORSEO_PASSWORD}",
"ENABLED_MODULES": "SERP,KEYWORDS_DATA,ONPAGE,DATAFORSEO_LABS,BACKLINKS,DOMAIN_ANALYTICS,BUSINESS_DATA,CONTENT_ANALYSIS,AI_OPTIMIZATION",
"FIELD_CONFIG_PATH": "./extensions/dataforseo/field-config.json"
}
},
"firecrawl-mcp": {
"command": "npx",
"args": [
"-y",
"firecrawl-mcp"
],
"env": {
"FIRECRAWL_API_KEY": "${FIRECRAWL_API_KEY}"
}
},
"nanobanana-mcp": {
"command": "npx",
"args": [
"-y",
"@ycse/nanobanana-mcp@latest"
],
"env": {
"GOOGLE_AI_API_KEY": "${GOOGLE_AI_API_KEY}"
}
}
}
}
15 changes: 15 additions & 0 deletions plugins/BestLemoon/codex-seo/hooks/hooks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "python3 \"./hooks/validate-schema.py\" \"$FILE_PATH\""
}
]
}
]
}
}
9 changes: 9 additions & 0 deletions plugins/BlockchainHB/launchfast_codex_plugin/.mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"mcpServers": {
"launchfast": {
"type": "http",
"url": "https://launchfastlegacyx.com/api/mcp/server",
"note": "LaunchFast MCP server for Amazon product research. Codex handles OAuth through the LaunchFast MCP metadata flow. During authorization, localhost or 127.0.0.1 loopback callback URLs are expected for the local Codex client and should not be rewritten to the LaunchFast domain."
}
}
}
71 changes: 0 additions & 71 deletions plugins/Kanevry/session-orchestrator/hooks/enforce-commands.sh

This file was deleted.

87 changes: 0 additions & 87 deletions plugins/Kanevry/session-orchestrator/hooks/enforce-scope.sh

This file was deleted.

Loading
Loading