plugins marketplace
← All plugins

audette-skills

v0.1.0

Audette AI workflows — skills, MCP tools, and agents for building energy modeling, carbon reduction planning, and decarbonization roadmaps.

Claude Code1 skill2 MCP serversstreamable-http

by AudetteApache-2.00updated 2 weeks ago

Source

git clone https://github.com/soapboxbuild/audette-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

audette-skills/
├── .claude-plugin/plugin.json
├── skills/audette-onboarding/SKILL.md
└── .mcp.json

Skills1

audette-onboardingskills/audette-onboarding/SKILL.md

Full Audette onboarding workflow for a Soapbox asset that has no Audette building yet. Reads footprint data and uploaded documents (OM, PCA), confirms required fields with the user, creates one Audette building per footprint in parallel, links them to a property, patches the asset's audette_property_id via the Soapbox API, and submits utility or equipment data. Use this skill whenever an asset needs to be set up in Audette for the first time. Triggers on: "create Audette buildings", "onboard to Audette", "set up in Audette", "add this asset to Audette", "create buildings for [property]", or proactively whenever an ## Audette Onboarding Context section is present in the thread.

MCP servers2

audettestreamable-http
url
https://mcp-server.prod.audette.io/mcp
soapbox-ragstreamable-http
url
https://rag.soapbox.build/mcp

Manifests1

.claude-plugin/plugin.json
{
  "name": "audette-skills",
  "version": "0.1.0",
  "description": "Audette AI workflows — skills, MCP tools, and agents for building energy modeling, carbon reduction planning, and decarbonization roadmaps.",
  "author": {
    "name": "Audette",
    "url": "https://audette.io"
  },
  "homepage": "https://github.com/soapboxbuild/audette-skills",
  "license": "Apache-2.0",
  "mcpServers": {
    "audette": {
      "type": "http",
      "url": "https://mcp-server.prod.audette.io/mcp"
    },
    "soapbox-rag": {
      "type": "http",
      "url": "https://rag.soapbox.build/mcp"
    }
  },
  "skills": [
    "skills"
  ]
}