open-edge-platform/skills

scenescape-setup

Deploy a working Intel® SceneScape installation from scratch (outside the repo). Gathers user-provided streams, camera IDs, scene name, and mapping choice, then runs bootstrap through tracking verification via scripts/deploy_scenescape.sh. Also handles re-running or resuming a single phase of an existing deployment on request (e.g. "recalibrate", "redo scene reconstruction", "resume bootstrap only") via the orchestrator's --phase flag.

First seen Aug 19, 2026

Installation

$ npx skills add open-edge-platform/skills --skill scenescape-setup

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from open-edge-platform/skills · top by installs.

npx skills add open-edge-platform/skills

Browse all from open-edge-platform/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseApache-2.0
CompatibilityRequires Docker, docker-compose, and Python 3.10+ with `requests` on the host. GitHub access for sparse checkout of dlstreamer-pipeline-server. Network access to RTSP camera streams.
Allowed toolsBash, Read, Write, Edit, Glob, Grep, WebFetch, Env
More metadata
argument-hint
<deploy_dir> — always gather streams, camera_ids, scene_name, mapping from the user first

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 7,568 B
  • docs SUMMARY.md 464 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 14 installs

SKILL.md

SceneScape End-to-End Setup

Host needs Docker, docker-compose, and Python 3.10+ with requests.

Overview

This skill deploys and resumes an Intel® SceneScape environment outside the repo, gathers the required deployment inputs from the user, and orchestrates the bootstrap, calibration, scene reconstruction, and verification workflow. It is intended for first-time installs, re-runs with existing deploy-inputs.json, and targeted phase resumes such as bootstrap, calibrate, or scene when the user only needs to repeat or continue a part of the deployment.

Parameters / Arguments

Required runtime inputs for a fresh deployment: deploydir, streams (or video files), cameraids, scene_name, mapping (scene map source: reconstruction default, blueprint, .glb/.ply mesh, or geospatial). Optional state fields: --phase, --fresh, and the resume flag implied by the Fast Path.

Returns / Output

Deployment artifacts in deploydir: deploy-inputs.json (source of truth), .deploy-state.json, orchestrator logs, calibration/reconstruction/verification outputs, and a final DEPLOY COMPLETE with a sceneuid and deployment metrics.

Error handling

Fail safely instead of guessing: mismatched/duplicate streams vs camera_ids → stop and ask for corrected inputs; unreadable prior inputs on a camera-change fresh redeploy → ask the user to confirm the retained set; missing local repo/docs → fall back to the canonical GitHub URL rather than fabricating; resume/continue signal → treat deploy-inputs.json as existing and skip Step 1 unless the user says the directory is wrong; a failed step → read only the matching troubleshooting reference, no broad log dumps.

File resolution

All scripts, references, and assets resolve relative to $SKILL_DIR, so the skill folder is self-contained and portable. docs/user-guide/... links point at the local checkout first; if unavailable (standalone skill copy), fall back to https://github.com/open-edge-platform/scenescape/blob/main/<path> instead of guessing. Never copy SceneScape repo docs into references/; reserve new references for knowledge that has no written form elsewhere.

Always-on rules (no exceptions)

  • Before any deploy/resume/phase launch, read

[agent-guardrails.md](./references/agent-guardrails.md).

  • Every orchestrator launch also starts watch_orchestrator.sh on the orchestrator PID in the

background, notifying on RESULT=; rely on watcher notifications instead of user-driven polling.

  • Never invent camera IDs/streams/scene names; never interpolate raw inputs into ad hoc shell

one-liners; destructive actions (--fresh, deleting deploy_dir, docker compose down -v) always need explicit confirmation.

  • Load only the single phase/symptom reference that matches a reported failure.

Step 0 — Bootstrap skill-dir

Resolve SKILL_DIR before any other step, using the first matching strategy:

A. Scripts already on disk (scenescape repo is checked out locally):

export SKILL_DIR=<path-to-scenescape-checkout>/.github/skills/scenescape-setup

B. Extract from git (no full checkout needed — fast, leaves no branch state):

SCENESCAPE_REPO=$(find ~ -maxdepth 5 -type d -name scenescape 2>/dev/null | head -1)
git -C "$SCENESCAPE_REPO" fetch origin main
mkdir -p /tmp/scenescape-skill
git -C "$SCENESCAPE_REPO" archive origin/main \
  -- .github/skills/scenescape-setup | tar -x -C /tmp/scenescape-skill
export SKILL_DIR=/tmp/scenescape-skill/.github/skills/scenescape-setup

Verify: ls "$SKILLDIR/scripts/deployscenescape.sh" must succeed before continuing.

Routing

Situation Reference to read
New deployment (gather inputs, mapping choice, video files) [step-1-gather-inputs.md](./references/step-1-gather-inputs.md)
Resume / repeat / Fast Path ("continue", "resume", unchanged inputs) [fast-path.md](./references/fast-path.md)
Launch (full deploy, resume, or --phase orchestrator + watcher + README + handoff) [deploy-and-complete.md](./references/deploy-and-complete.md)
Single phase: bootstrap (6–8), calibrate (9–10), scene (11–13) [phase-bootstrap.md](./references/phase-bootstrap.md) / [phase-calibrate.md](./references/phase-calibrate.md) / [phase-scene.md](./references/phase-scene.md)
Tracking flickers, vanishes, or IDs change (same camera) [tuning-tracker.md](./references/tuning-tracker.md)
Cross-camera Re-ID misses / wrong person [tuning-reid.md](./references/tuning-reid.md)
Keep a vision attribute from resetting [attribute-persistence.md](./references/attribute-persistence.md)
External non-vision sensor reading/event [singleton-sensors.md](./references/singleton-sensors.md)
Expected size/shape for a class (Object Library) [object-library.md](./references/object-library.md)
After successful deploy — what to build with scene output (required handoff) [using-scene-output.md](./references/using-scene-output.md)
Generated-file layout / web-UI handoff / bootstrap-runtime-reconstruction diagnosis [operational-reference.md](./references/operational-reference.md) (only for those needs — not during routine deploy)

Tuning tracker/Re-ID behavior (reactive only)

Do not ask tuning questions upfront during Step 1 — always deploy with the shipped tracker-config.json / reid-config.json defaults first. Open the matching questionnaire only after the user reports tracking/Re-ID dissatisfaction. In that first response:

  1. State which reference you opened (tuning-tracker.md or tuning-reid.md — exactly one).
  2. Present that reference's numbered questionnaire in your reply.
  3. In the same turn, apply symptom-derived starter values from that reference's

recommendation logic to the deployed copy at <deploydir>/controller/tracker-config.json or <deploydir>/controller/reid-config.json (never the skill's assets/ originals). Show the exact JSON field changes and the exact restart command docker compose up -d --force-recreate scene.

  1. Note that questionnaire answers can further refine the starter values.

Do not skip the questionnaire, and do not skip showing the deployed-path edits + scene-only restart. Load exactly one matching reference (tracker timing vs cross-camera Re-ID).

Quality & Evaluation

Automated eval cases live in [evals/evals.json](./evals/evals.json), one entry per example-prompts/ file (prompt_file links the two together). See [benchmark/benchmark.md](./benchmark/benchmark.md) for the current benchmark.