Skip to content

Commit 906963e

Browse files
Add Codex plugin support with installation instructions (#15)
1 parent cdfe7bc commit 906963e

3 files changed

Lines changed: 50 additions & 1 deletion

File tree

.codex-plugin/plugin.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "posthog",
3+
"version": "1.0.2",
4+
"description": "Access PostHog analytics, feature flags, experiments, error tracking, and insights directly from Codex",
5+
"author": {
6+
"name": "PostHog",
7+
"email": "hey@posthog.com",
8+
"url": "https://posthog.com"
9+
},
10+
"homepage": "https://posthog.com/docs/model-context-protocol",
11+
"repository": "https://github.com/PostHog/ai-plugin",
12+
"license": "MIT",
13+
"keywords": [
14+
"analytics",
15+
"feature-flags",
16+
"experiments",
17+
"error-tracking",
18+
"a/b-testing",
19+
"surveys",
20+
"dashboards",
21+
"llm-analytics"
22+
],
23+
"skills": "./skills/",
24+
"mcpServers": "./.mcp.json",
25+
"interface": {
26+
"displayName": "PostHog",
27+
"shortDescription": "Analytics, feature flags, experiments, and error tracking",
28+
"longDescription": "Access PostHog analytics, feature flags, experiments, error tracking, and insights directly from Codex. Query your data, manage flags, run A/B tests, and debug errors without leaving your editor.",
29+
"developerName": "PostHog",
30+
"category": "Productivity",
31+
"capabilities": ["Read", "Write"],
32+
"websiteURL": "https://posthog.com",
33+
"privacyPolicyURL": "https://posthog.com/privacy",
34+
"termsOfServiceURL": "https://posthog.com/terms",
35+
"defaultPrompt": [
36+
"Show me all my feature flags",
37+
"What errors are affecting the most users?",
38+
"How many users signed up this week?"
39+
],
40+
"brandColor": "#F9BD2B",
41+
"logo": "./assets/logo.svg"
42+
}
43+
}

.github/workflows/sync-skills.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
echo "has_changes=true" >> "$GITHUB_OUTPUT"
8888
8989
# Bump patch version in plugin manifests
90-
for f in .claude-plugin/plugin.json .cursor-plugin/plugin.json gemini-extension.json; do
90+
for f in .claude-plugin/plugin.json .cursor-plugin/plugin.json .codex-plugin/plugin.json gemini-extension.json; do
9191
if [ -f "$f" ]; then
9292
jq '.version |= (split(".") | .[2] = (.[2] | tonumber + 1 | tostring) | join("."))' "$f" > "$f.tmp" && mv "$f.tmp" "$f"
9393
fi

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ claude plugin install posthog
1414

1515
Install from the [Cursor Marketplace](https://cursor.com/marketplace) or add manually in Cursor Settings > Plugins.
1616

17+
### Codex
18+
19+
```bash
20+
codex plugin install posthog
21+
```
22+
1723
### Gemini CLI
1824

1925
```bash

0 commit comments

Comments
 (0)