skills/smithery.ai/spoon-graph-development

spoon-graph-development

Installation
SKILL.md

Graph Development

Build workflow graphs using SpoonOS StateGraph.

Quick Start

from spoon_ai.graph import StateGraph, END
from typing import TypedDict

class MyState(TypedDict):
    counter: int
    result: str

async def process(state: MyState) -> dict:
    return {"counter": state["counter"] + 1}
Installs
1
First Seen
Mar 31, 2026
spoon-graph-development from smithery.ai