Scaffolding skill
The new-nebari-app Claude Code skill
teaches coding agents to generate apps in the exact layout this pack expects — real code plus
a nebari-app.yaml launch manifest — and to launch them through the
MCP server. Together they make “build me a dashboard, then launch it” a single
conversation.
Install
Section titled “Install”Copy the skill from the repository into your project (or user) skills directory:
# project-levelcp -r skill/new-nebari-app .claude/skills/
# or user-levelcp -r skill/new-nebari-app ~/.claude/skills/It triggers on requests like “create a nebari app”, “scaffold a static site for the
cluster”, “scaffold a python app for nebari”, or “launch it” in a directory
containing nebari-app.yaml.
What it scaffolds
Section titled “What it scaffolds”docs-site/ py-app/ nebari-app.yaml nebari-app.yaml index.html pixi.toml styles.css app.pyApps get real files (never hand-written inline YAML). The starters follow the platform
conventions: static assets served as-is, Python apps launched by a pixi task that serves
on 0.0.0.0:8080, and no auth code in the app — the gateway handles SSO.
The manifest
Section titled “The manifest”nebari-app.yaml sits next to the code and maps 1:1 onto the App resource:
name: docs-sitenamespace: appsdisplayName: "Docs Site"source: type: files files: { path: "." }access: public: true subdomain: docs-siteManifest source types are files, git, and pvc. files is an authoring convenience:
a directory path next to the manifest — on launch, the agent reads those files and passes
them as the app’s inline source (same
rules as uploads). The full schema and the
manifest → launch_app mapping live in the skill’s
references/manifest.md.
”Launch it”
Section titled “”Launch it””When the user asks, the agent:
- reads
nebari-app.yaml, - calls
describe_cluster(andauthenticateif prompted), - maps the manifest onto
launch_app— idempotent, so iterating is safe, - polls
get_app_statusuntilRunning(checkingget_app_logson failure), - reports the app URL.
The committed nebari-app.yaml
also doubles as the GitOps artifact for teams who keep their apps in version control.