skills/beam/beam-tools/beam-graph-creator/SKILL.md
Build and deploy complete Beam agent graphs with conditional branching, convergence nodes, and multi-path routing. Takes a specification document and flowchart (builds flowchart on Miro if not provided), designs all nodes/edges/params, deploys via PUT/PATCH, and validates with test data. Use when user says "create beam agent graph", "build beam graph", "deploy agent", "new beam agent", "build graph from spec", "create nodes and edges", or needs to go from a specification document to a working deployed agent on Beam.
npx skillsauth add beam-ai-team/beam-next-skills beam-graph-creatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Build and deploy complete Beam agent graphs from a specification document and flowchart. Handles the full lifecycle: flowchart → node design → API deployment → validation.
.env (BEAM_API_KEY, BEAM_WORKSPACE_ID)Read the specification document and extract:
If the spec is incomplete, ask the user to fill gaps before proceeding.
If flowchart exists on Miro:
If no flowchart exists:
diagram_createn# label object color), connectors (c src text tgt), clustersThe flowchart is the source of truth for graph topology. Every node and edge in the final agent must trace back to this flowchart.
From the flowchart, create a node registry table:
| Node | Name | Type | Description | Model |
|------|------|------|-------------|-------|
| N0 | Entry | Entry | Auto-created by Beam | — |
| N1 | [Name] | Processing | [What it does] | [Model] |
| ... | ... | ... | ... | ... |
For each processing node, define:
select-llm-model or user preferenceUse references/node-template.md for the node spec format.
From the flowchart, create an edge registry with conditions:
| # | From | To | Condition | Description |
|---|------|----|-----------|-------------|
| E1 | N0 | N1 | always | Entry → first processing node |
| E2 | N1 | N2 | `field == "value"` | Conditional branch |
Rules for edges:
childEdges[] AND target's parentEdges[]required: false on path-dependent inputsWrite each node's spec as a markdown file following this structure:
# [Node Number] [Node Name]
## Purpose
[One sentence]
## Input Parameters
| Param | Type | Fill Type | Source | Required |
|-------|------|-----------|--------|----------|
## Output Parameters
| Param | Type | Array | Description |
|-------|------|-------|-------------|
## Prompt
[Full LLM instruction text]
## Edges
| Target | Condition |
|--------|-----------|
Store in 04-workspace/clients/{client}/agents/{agent-name}/nodes/.
6a. Build PUT payload:
beam-api-reader → create_agent_from_prompt.pybeam-put-payload-builder to transform GET→PUT6b. Send PUT:
/agent-graphs/{agentId} with full graph payload6c. PATCH prompts, models, params:
originalTool — must PATCH each node6d. Publish:
PATCH /agent-graphs/{graphId}/publishConsult beam-agent-manager → references/api-rules.md for all API behavioral rules.
If a test dataset is available (e.g., golden dataset with ground truth):
beam-ape-optimizer for systematic prompt improvement)When a node routes to different targets based on output:
routing_decision output param that encodes the combined logicrouting_decision == "classify" → N4, routing_decision == "manual_review" → N13When multiple paths merge into one node:
required: falseFor dependencies not yet available (DB lookups, external APIs):
MOCK in the node registrybeam-ape-optimizer — Systematic prompt optimization after initial deploymentdesign-beam-agent — Simpler design-only tool for linear 3-level agents (no API deployment)development
--- name: taste-skill type: skill version: '1.0' author: Leonxlnx (packaged by Zhichao Li) category: general tags: - frontend - design - anti-slop - landing-page updated: '2026-06-11' visibility: public description: Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check. license: MIT.
development
Use when communicating quantitative information in any form — Slack updates, emails, reports, decks, dashboards, landing pages, product UI, public talks. Covers two integrated layers: (1) making numbers semantically meaningful (translation, anchoring, simplification, story-pairing) and (2) showing numbers cleanly (chart vs table vs prose, chart-by-message, pre-attentive emphasis, color discipline, decluttering). Distilled and integrated from *Show Me the Numbers* (Stephen Few) and *Make Numbers Count* (Chip Heath & Karla Starr). Not for raw data analysis or statistics — this is about communication of numbers, not their derivation.
development
Use when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states. Handles UX review, visual hierarchy, information architecture, cognitive load, accessibility, performance, responsive behavior, theming, anti-patterns, typography, fonts, spacing, layout, alignment, color, motion, micro-interactions, UX copy, error states, edge cases, i18n, and reusable design systems or tokens. Also use for bland designs that need to become bolder or more delightful, loud designs that should become quieter, live browser iteration on UI elements, or ambitious visual effects that should feel technically extraordinary. Not for backend-only or non-UI tasks.
tools
Stateful multi-session tutor adapted for Beam — teach a stakeholder to understand, trust, and operate a specific agent, or teach a Solution Engineer a client's business process for delivery. Grounds every lesson in Knowledge Hub sources (real agent graphs, real tasks, transcripts, Linear) before any web resource. Also works for any general topic. Trigger on "teach me", "beam teach", "教我", "onboard <person> on <agent>", "help <stakeholder> understand the agent", "learn this client's process".