ConnectiveOne Docs skill

Give your coding agent current, source-linked guidance from the official ConnectiveOne documentation.

The skill is intentionally small. It retrieves the latest documentation from docs.connectiveone.io instead of bundling a stale copy.

Install with npx

npx skills add ConnectiveOne/connectiveone-docs --skill connectiveone-docs -g

The open-source skills installer supports Codex, Claude Code, Cursor, GitHub Copilot, Gemini CLI, Windsurf, and other agents that implement the Agent Skills format.

Install in Claude Code

/plugin marketplace add ConnectiveOne/connectiveone-docs
/plugin install connectiveone-docs@connectiveone

Download only SKILL.md

Download the latest file from:

https://raw.githubusercontent.com/ConnectiveOne/connectiveone-docs/main/skills/connectiveone-docs/SKILL.md

For an agent that discovers skills in ~/.agents/skills:

mkdir -p ~/.agents/skills/connectiveone-docs
curl -fsSL https://raw.githubusercontent.com/ConnectiveOne/connectiveone-docs/main/skills/connectiveone-docs/SKILL.md \
  -o ~/.agents/skills/connectiveone-docs/SKILL.md

Agent-specific locations may differ. If in doubt, use the npx installer and select the agents it detects.

What it does

  • Searches current official ConnectiveOne documentation.
  • Reads only the pages relevant to the question.
  • Answers in the user's language and links to public source pages.
  • Covers setup, administration, channels, scenarios, integrations, APIs, FastLinePro, releases, security, permissions, and troubleshooting.

Documentation lookup is read-only. The skill does not require credentials and cannot change a ConnectiveOne instance.

Repository layout

  • skills/connectiveone-docs/SKILL.md — portable Agent Skill
  • .codex-plugin/plugin.json — Codex plugin manifest
  • .claude-plugin/plugin.json — Claude Code plugin manifest
  • .claude-plugin/marketplace.json — Claude Code marketplace
  • scripts/validate.mjs — dependency-free validation

Development

node scripts/validate.mjs
npx skills add . --list

Release notes and version tags use semantic versioning. Update both plugin manifests and marketplace metadata when publishing a new version.

License

MIT