architecture-onboarding
Interactive concept map explorer for architecture documentation onboarding. Reads ARCHITECTURE.md, docs/, compliance-docs/, and adr/ to generate a canvas-based concept map playground with draggable nodes representing sections, components, principles, compliance contracts, and skills — connected by dependency, ownership, and workflow edges. Users cycle knowledge levels (Know/Fuzzy/Unknown) per node and generate targeted learning prompts. Use when onboarding a new team member, exploring the architecture suite, getting an architecture overview, or mapping what you know and don't know.
What this skill does
# Architecture Onboarding Skill
## Purpose
This skill is the **entry point for new team members** joining a project that uses the solutions-architect-skills documentation suite. It reads the project's existing architecture docs and generates an interactive concept map — a canvas-based, draggable node-and-edge visualization — that helps users explore:
- The **5-phase lifecycle pipeline** (Readiness → Docs → Compliance → Review → Handoff)
- **Use cases** from the PO Spec / system overview, traced through sections and components
- The **13-section architecture structure** (S1-S13) with their file paths and dependency tiers
- **Architecture types** (META, 3-Tier, Microservices, N-Layer, BIAN) with the detected type highlighted
- **Components** from the component index with their types and connections
- **Compliance contract slots** (10 contracts) with scores if available
- **Architecture principles** (9 required) with presence indicators
- **Available skills** (9 skills) and when to invoke each
- **Architecture Decision Records** if `adr/` exists
Users can cycle knowledge levels per node (Know / Fuzzy / Unknown) and copy a targeted learning prompt pre-shaped by their knowledge gaps.
**Distinct from `architecture-peer-review`** (which reviews quality) and **`architecture-compliance-review`** (which analyzes contract health) — this skill is for exploration and learning, not evaluation.
---
## When to Invoke This Skill
- User is new to the project and wants an overview of the architecture
- User asks for an "architecture overview", "architecture tour", "architecture map", or "concept map"
- User asks "what is this architecture?", "how does this architecture work?", or "where do I start?"
- User asks for an "onboarding" experience or "explore the architecture"
- User uses `/skill architecture-onboarding`
**Do NOT invoke for:**
- Creating or editing ARCHITECTURE.md → use `architecture-docs` skill
- Generating compliance contracts → use `architecture-compliance` skill
- Peer review of architecture quality → use `architecture-peer-review` skill
- Compliance gap analysis → use `architecture-compliance-review` skill
- Generating component handoffs → use `architecture-dev-handoff` skill
---
## Files in This Skill
| File | Purpose |
|------|---------|
| `SKILL.md` | This file — entry point and workflow |
| `PLAYGROUND_TEMPLATE.md` | Concept map playground template for the interactive HTML explorer |
---
## Workflow
### Step 1 — Locate ARCHITECTURE.md (Required)
Search for `ARCHITECTURE.md` at the project root (and one level up if running from a subdirectory). If not found, **abort** with:
> *"No ARCHITECTURE.md found. Use `/skill architecture-docs` to create one first, then run onboarding."*
Detect structure type:
- **Multi-file**: `ARCHITECTURE.md` is a navigation index + `docs/` directory with section files
- **Monolithic**: Single `ARCHITECTURE.md` contains all content
---
### Step 2 — Extract Architecture Metadata
From `ARCHITECTURE.md`:
- **Project name**: From the first H1 heading or the "Project" field in Document Control
- **Architecture type**: Search for `<!-- ARCHITECTURE_TYPE: XXX -->` comment. If not found, infer from content (look for "META", "BIAN", "Microservices", "3-Tier", "N-Layer" keywords). Default to `"unknown"`.
- **Structure type**: Whether `docs/` directory exists with numbered files
---
### Step 3 — Read Section Presence
Glob for `docs/NN-*.md` files. Map each found file to its S-number using this fixed table:
| File | S-number | Tier |
|------|----------|------|
| `docs/01-system-overview.md` | S1+S2 | 0 (Foundation) |
| `docs/02-architecture-principles.md` | S3 | 0 (Foundation) |
| `docs/03-architecture-layers.md` | S4 | 1 |
| `docs/04-data-flow-patterns.md` | S6 | 3 |
| `docs/05-integration-points.md` | S7 | 3 |
| `docs/06-technology-stack.md` | S8 | 3 |
| `docs/07-security-architecture.md` | S9 | 4 |
| `docs/08-scalability-and-performance.md` | S10 | 4 |
| `docs/09-operational-considerations.md` | S11 | 5 |
| `docs/components/` (directory) | S5 | 2 |
| `adr/` (directory) | S12 | 0 (Foundation) |
For monolithic docs: use heading patterns to infer which sections are present.
**Design drivers** (if S1 present): Search `docs/01-system-overview.md` for `### Design Drivers` heading. Extract Value Delivery, Scale, and Impacts levels — include in S1+S2 node detail.
---
### Step 4 — Read Optional Data
All items in this step are **optional** — the skill works with just `ARCHITECTURE.md`.
**Components** (`docs/components/README.md`):
- If exists: parse the 4-column index table (`#`, `Component`, `File`, `Type`)
- Limit to first 15 components to avoid node overload on large projects
- Status: `"present"` if file exists, `"not-created"` otherwise
**Handoffs** (`handoffs/` directory):
- If exists: scan each handoff file's "Business Context" field for UC references
- Used to build use case → component `served-by` edges
**PO Spec** (`PRODUCT_OWNER_SPEC.md`):
- Check if file exists; used as fallback source for use case extraction if S2 lacks them
**Use Cases** (extracted from two sources in priority order):
1. **Primary source** — `docs/01-system-overview.md` Section 2.3 "Primary Use Cases": Parse use case headings (`### Use Case N: <Name>`) and extract: name, description (first line after heading), actors, and success metrics.
2. **Fallback source** — `PRODUCT_OWNER_SPEC.md` Section 4 "Use Cases": Parse `### Use Case N: <Name>` headings with description, actors, primary flow steps, and success metrics.
3. If neither source has use cases, skip — no use case nodes are created.
- Limit to 10 use cases maximum.
**Use Case → Component mapping** (from handoff docs):
- If `handoffs/` exists: scan each handoff file for the "Business Context" field (typically line ~30). Extract use case references (e.g., "UC 1", "UC 2", "Use Case 1") and map them to component IDs.
- If handoffs don't exist: infer mapping from component descriptions and use case names (best-effort keyword matching).
---
### Step 5 — Build Nodes and Edges
Assemble `onboardingData` JSON following the schema in `PLAYGROUND_TEMPLATE.md`.
**Node construction rules:**
- Create one node per **use case** extracted in Step 4 (id: `uc-N`, group: `usecases`). Include description, actors, and success metrics in the detail field.
- Create one node per S-number (id: `s1-s2`, `s3` … `s12`, group: `sections`). Present nodes fully opaque; missing nodes as ghost nodes with `status: "missing"`.
- Create one node per component (id: `comp-<slug>`, group: `components`, up to 15).
- Default all `knowledge` fields to `"fuzzy"`
**Edge construction rules:**
Section tier dependencies (always present):
- S4 → S1+S2 (depends-on), S4 → S3 (depends-on)
- S5 → S1+S2 (depends-on), S5 → S4 (depends-on)
- S6 → S5, S7 → S5, S8 → S5 (depends-on)
- S9 → S5, S9 → S7, S9 → S8 (depends-on)
- S10 → S5, S10 → S8 (depends-on)
- S11 → S5, S11 → S8, S11 → S10 (depends-on)
Use case → section edges (traces-to):
- Every use case traces to S1+S2 (where use cases are technically defined)
- Use case → S6 (data flow) if the use case involves async flows or event processing
- Use case → S7 (integration) if the use case involves external systems
Use case → component edges (served-by) — extracted from handoff docs:
- Each component's "Business Context" field lists which use cases it serves
- Create `{ from: "uc-N", to: "comp-<slug>", type: "served-by" }` for each mapping
Component → S5 edges (implements) — one per component from component index
---
### Step 6 — Invoke Playground
Invoke the `playground` skill using `PLAYGROUND_TEMPLATE.md` as the template. Pass the assembled `onboardingData` as the data to embed.
Output filename: `architecture-onboarding-<YYYY-MM-DD>.html` (use today's date)
After writing the file, run: `open architecture-onboarding-<YYYY-MM-DD>.html`
---
### Step 7 — Fallback (No Playground Plugin)
If the `playground` plugin is not installed, output a structured plain-text reporRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.