posthog
Official PostHog plugin for AI clients. Access PostHog products directly from your AI coding tool.
What's inside
Official PostHog plugin for AI clients. Access PostHog products directly from your AI coding tool.
FAQ
share is a Claude Code plugin with hand-picked skills for documentation work, indexed on Flowy. Install it with the command on its page. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add PostHog/claude-code-share-plugin> /plugin install share@claude-code-share-plugin
Repo: PostHog/claude-code-share-plugin
A Claude Code plugin that saves and shares your coding sessions to GitHub repositories in readable markdown format.
gh) installed and authenticatedOne-liner installation:
curl -fsSL https://raw.githubusercontent.com/PostHog/claude-code-share-plugin/main/install.sh | \
bash -s -- --claude-share-repo repo-owner/repo-name
Replace repo-owner/repo-name with your sessions repository.
What gets auto-detected:
gh CLI)~/.claude/projects/ based on working directory)main)sessions/claude)Configuration is saved automatically to ~/.claude/share-plugin-config.json during installation - no environment variables needed!
In Claude Code, run:
/plugin marketplace add PostHog/claude-code-share-plugin
/plugin install share@claude-code-share-plugin
Clone the repository:
gh repo clone PostHog/claude-code-share-plugin ~/claude-plugins/claude-code-share-plugin
In Claude Code:
/plugin marketplace add ~/claude-plugins/claude-code-share-plugin
/plugin install share@claude-code-share-plugin
The Quick Install automatically saves configuration to ~/.claude/share-plugin-config.json.
If you need to change the repository later, you can either:
cat > ~/.claude/share-plugin-config.json <<EOF
{
"repo": "new-owner/new-repo"
}
EOF
export CLAUDE_SHARE_REPO="repo-owner/repo-name"
For automatic plugin installation across your team, add to your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"claude-code-share-plugin": {
"source": {
"source": "github",
"repo": "PostHog/claude-code-share-plugin"
}
}
},
"enabledPlugins": [
"share@claude-code-share-plugin"
]
}
When team members trust the repository, Claude Code will automatically install the marketplace and plugin.
Share the current session with no description:
/share
Share with a descriptive name:
/share fixing authentication bug
This creates a file like: 20251021-142530-fixing-authentication-bug.md
Sessions are organized as:
your-sessions-repo/
โโโ sessions/
โโโ claude/
โโโ username/ # Auto-detected from gh CLI
โโโ 20251021-142530-fixing-auth.md
โโโ 20251021-153245-adding-tests.md
โโโ ...
# Claude Code Session
**Date:** 2025-10-21 14:25:30
---
## User
Can you help me fix the authentication bug?
## Claude
I'll help you investigate the authentication issue. Let me first check the relevant files.
<details>
<summary>Tool: read_any_files</summary>
```json
{
"files": [
{
"path": "/src/auth/login.py"
}
]
}
| What | How |
|---|---|
| Configured during install | Repository saved to ~/.claude/share-plugin-config.json |
| Auto-detected | Username (from gh CLI) |
| Auto-detected | Session log (from ~/.claude/projects/ based on working directory) |
| Defaults | Branch: main, Path: sessions |
The plugin needs to know which GitHub repository to use. Run the installer:
curl -fsSL https://raw.githubusercontent.com/PostHog/claude-code-share-plugin/main/install.sh | \
bash -s -- repo-owner/repo-name
Or create the config file manually:
cat > ~/.claude/share-plugin-config.json <<EOF
{
"repo": "repo-owner/repo-name"
}
EOF
Ensure:
gh CLI is installed: gh --versiongh auth statusCheck that:
gh auth refreshTo modify the plugin:
/plugin uninstall share/plugin install share@claude-code-share-plugin<details> sections/tmp/claude-share-tempgh CLI which respects your existing GitHub authenticationMIT
.claude/ .claude-plugin/ marketplace.json plugin.json settings.example.json .gitignore CLAUDE.md commands/ share.md CONTRIBUTING.md install.sh LICENSE README.md scripts/ share_session.py
ยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic