spark-recon
Use when checking on DGX Spark inference performance landscape — scans Arena leaderboard, vLLM releases, spark-vllm-docker builds, Qwen models, and NVIDIA forum for actionable changes. Run periodically from the spark project directory.
What this skill does
# Spark Recon
Periodic intelligence scan of the DGX Spark inference performance landscape. Five parallel checks, compared against stored baselines, classified by urgency, cross-correlated, results appended to LAB_NOTEBOOK.md.
**This skill is report + recommend only. It never touches the Spark system.**
Follow the shared execution framework, trigger logic, cross-correlation, classification, LAB_NOTEBOOK entry templates, baseline update protocol, and web research patterns defined in:
`plugins/personal-plugin/references/patterns/audit-recon-system.md`
---
## Loop Guard — Auto-Activation Safety Check
**Run this check before any other step when the skill is triggered automatically via `paths:`.**
1. Read the last 20 lines of `LAB_NOTEBOOK.md` (if it exists).
2. If any line contains `spark-recon skill` and a timestamp within the last 5 minutes: **stop immediately** — self-triggered re-entry detected. Output: "Loop guard triggered — spark-recon ran within last 5 minutes. Skipping." and exit.
3. If `--force` is present in `$ARGUMENTS`: skip this check and proceed regardless.
4. Otherwise: proceed normally.
---
## Machine Config
```yaml
machine:
name: "DGX Spark (GB10)"
baseline_file: "SPARK_BASELINE.md"
project_root: "~/dev/personal/spark/"
notebook_file: "LAB_NOTEBOOK.md"
recon_sources:
check1_source: "https://spark-arena.com/leaderboard (browser MCP preferred; WebFetch fallback)"
check2_source: "https://api.github.com/repos/vllm-project/vllm/releases?per_page=5"
check3_source: "https://api.github.com/repos/eugr/spark-vllm-docker/releases?per_page=5 + commits?per_page=10"
check4_source: "HuggingFace (MCP if available) + web search"
check5_source: "Discourse JSON: forums.developer.nvidia.com/c/accelerated-computing/dgx-spark-gb10/{719,720,721}.json"
trigger_sources:
vllm_release: "Check 2 (vLLM releases) release notes and changelog"
arena: "Check 1 (Arena leaderboard) entries and tok/s values"
huggingface: "Check 4 (Qwen model landscape) search results"
forum: "Check 5 (NVIDIA Forum) post titles and summaries"
svd: "Check 3 (spark-vllm-docker) commits and releases"
arena_filter: "tg128 test type, concurrency 1, single-node only"
arena_action_threshold_pct: 10 # 10%+ tok/s jump over baseline = ACTION NEEDED
current_model: "Qwen/Qwen3.5-35B-A3B"
quantization: "FP8 on-the-fly"
community_builders:
- hellohal2064
- Artyom
- sus
- sesmanovic
- namake-taro
- coolthor
- sggin1
- eugr
```
---
## Required Files
| File | Location | Purpose |
|------|----------|---------|
| `SPARK_BASELINE.md` | `~/dev/personal/spark/` | Performance numbers + last-checked dates + watch items |
| `LAB_NOTEBOOK.md` | `~/dev/personal/spark/` | Append-only results log |
If `SPARK_BASELINE.md` doesn't exist, create it using the template at the bottom of this skill.
---
## Check-Specific Instructions
Use the Generic Recon Check Structure from the shared reference. Machine-specific details below.
### Check 1 — Spark Arena Leaderboard
**Data source:** `https://spark-arena.com/leaderboard`
**Agent instructions:**
1. Open leaderboard via browser tools (`mcp__claude-in-chrome__tabs_create_mcp` → `mcp__claude-in-chrome__navigate` → `mcp__claude-in-chrome__get_page_text`). Fall back to `WebFetch` if browser unavailable.
2. Filter: **`tg128` type, concurrency 1, single-node only.** We have one DGX Spark — multi-node is informational, not actionable.
3. Find top FP8-quantized, single-node Qwen3.5 entry: name, tok/s, creator, rank.
4. Compare tok/s against baseline `arena_top_fp8_qwen35_tok_s`. If 10%+ jump: ACTION NEEDED.
5. On ACTION: fetch recipe via `https://spark-arena.com/api/recipes/{id}/raw`. Extract config diff vs SPARK_BASELINE.md (env vars, flags, container image, model variant, load-format, batch token settings).
6. Scan top 5 single-node entries overall. Flag any new non-Qwen3.5 FP8 contender.
**Return:** top FP8 Qwen3.5 single-node entry (name, tok/s, delta %), top overall, recipe diff if actionable, new contenders.
### Check 2 — vLLM Releases
**Data source:** `https://api.github.com/repos/vllm-project/vllm/releases?per_page=5`
**Agent instructions:**
1. `WebFetch` releases API. Compare against baseline `vllm_last_checked_version`.
2. Classify keywords: HIGH = `SM121`, `SM120`, `Blackwell`, `GB10`, `#38126`, `sm_12`, `arch guard`; MEDIUM = `prefix caching`, `Mamba`, `hybrid`, `MoE`, `Marlin`, `Qwen3.5`, `mixed architecture`; LOW = none of the above.
3. If HIGH: generate concrete test plan (docker run --rm command, startup log checks for SM121 kernel loading + FP8 warning, rollback note with current image tag from baseline).
**Return:** latest version, classification, relevant changelog items, test plan if HIGH.
### Check 3 — spark-vllm-docker Builds
**Data source:** releases and commits APIs (see Machine Config).
**Agent instructions:**
1. `WebFetch` releases and recent commits. This project builds `vllm-node` containers for Arena entries — new builds are a leading indicator of Arena performance jumps.
2. Look for: new container image tags, Dockerfile changes, new recipes, SM121/SM120 kernel patches, FlashInfer updates.
3. Compare against baseline `svd_last_checked_date`.
4. If new build: note base vLLM version, patches applied, target architecture.
**Return:** new releases or commits since last check, new container images, notable changes.
### Check 4 — Qwen Model Landscape
**CONTEXT: Already running `Qwen/Qwen3.5-35B-A3B` FP8. This check looks for models NEWER than Qwen3.5. Do NOT report Qwen3.5-35B-A3B as "new."**
**Agent instructions:**
1. If HuggingFace MCP available: search Qwen org, >10B parameters, created after 2026-03-01.
2. `WebSearch`: `"Qwen4" model 2026`, `Qwen new model release 2026`, `Qwen3.5 successor`.
3. Look for: new model families (Qwen4, etc.), `Qwen/Qwen3.5-35B-A3B-FP8` (pre-quantized), new fine-tunes, architecture changes.
4. For each new model: parameter count, architecture (MoE vs dense, hybrid Mamba), available quantizations, benchmarks. Flag existence + key specs — model switching is a separate decision.
**Return:** new models or "no new models beyond Qwen3.5", key specs, pre-quantized FP8 availability.
### Check 5 — NVIDIA DGX Spark Forum
**Data sources (Discourse JSON — append `.json`):**
- `https://forums.developer.nvidia.com/c/accelerated-computing/dgx-spark-gb10/719.json`
- `https://forums.developer.nvidia.com/c/accelerated-computing/dgx-spark-gb10/dgx-spark-gb10-projects/720.json`
- `https://forums.developer.nvidia.com/c/accelerated-computing/dgx-spark-gb10/dgx-spark-gb10-user-forum/721.json`
Fall back to HTML only on JSON error.
**Agent instructions:**
1. Fetch all three JSON endpoints. Scan topics since baseline `forum_last_checked_date`.
2. Flag posts about: performance improvements, new vLLM builds/images, kernel compilation techniques, driver updates, new model results, SM121/SM120 optimizations, spark-vllm-docker updates.
3. Note posts from known community builders (see Machine Config).
4. Classify: ACTION = new result/technique/image that could improve setup; INFO = worth reading; SKIP = unrelated.
**Return:** post count since last check, ACTION/INFO posts with title, author, date, link, one-line summary.
---
## Console Report Format
```text
## Spark Recon — {DATE}
Overall: {ACTION NEEDED / WORTH WATCHING / NO ACTION}
### Arena: {status}
- Top FP8 Qwen3.5 (single-node): {tok/s} ({name}) — {delta}% vs baseline
- Top overall (single-node): {tok/s} ({name})
{recipe diff if actionable}
{new contenders if any}
### vLLM: {status}
- Latest: {version} — {classification}
{relevant items}
{test plan if HIGH}
### spark-vllm-docker: {status}
{new builds or "No new builds"}
### Qwen Models: {status}
{findings or "No new models beyond Qwen3.5"}
### Forum: {status}
- {N} new posts since {date}
{ACTION/INFO items}
### Cross-Correlated Findings
{items that appeared in multiple checks, or "None"}
### Triggered Alerts
{triggers from Recon Triggers table that matched, oRelated in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.