Claude Code plugins for building against TrueNorth IT services.
| Plugin | Description |
|---|---|
dataverse-portal |
Scaffold a React + TypeScript + Tailwind + Auth0 SPA against the Dataverse Contact API. |
# Add this marketplace once
claude plugin marketplace add TrueNorthIT/claude-plugins
# Install a plugin
claude plugin install dataverse-portal@truenorthitOr from inside a Claude Code session:
/plugin marketplace add TrueNorthIT/claude-plugins
/plugin install dataverse-portal@truenorthit
claude plugin marketplace update truenorthitTo iterate on a plugin locally before pushing:
claude plugin marketplace add ./claude-plugins
claude plugin install dataverse-portal@truenorthitChanges to plugin files take effect next session. To validate the marketplace manifest and plugin manifests:
claude plugin validate .claude-plugins/
├── .claude-plugin/
│ └── marketplace.json ← Marketplace manifest (name, owner, plugins[])
├── plugins/
│ └── dataverse-portal/
│ ├── .claude-plugin/
│ │ └── plugin.json ← Plugin manifest (name, description, version)
│ └── skills/
│ └── build-portal/
│ └── SKILL.md ← Auto-invoked skill
└── README.md