← スキル一覧に戻る

glif-workflow-builder
by willsigmon
Website for sigstack.dev - Claude Code stack showcase
⭐ 0🍴 0📅 2026年1月23日
SKILL.md
name: glif-workflow-builder description: Design and build Glif AI workflows. Use when creating new glifs, planning workflow structure, or understanding block types. allowed-tools: Read, WebFetch
Glif Workflow Builder
Design AI workflows using Glif's block-based system.
Workflow Structure
Glifs are JSON graphs with nodes (blocks) connected via variable references.
{
"nodes": [
{"name": "input1", "type": "TextInputBlock", "params": {...}},
{"name": "generator", "type": "ImageBlock", "params": {"prompt": "{input1}"}}
]
}
Block Types
Input Blocks
- TextInputBlock - Text input from user
- ImageInputBlock - Image upload
- MultipickBlock - Multiple choice selector
AI Generation Blocks
- TextBlock - LLM text generation (GPT, Claude, Llama)
- ImageBlock - Image generation (SDXL, Flux, DALL-E)
- ImageToTextBlock - Image captioning/analysis
- VideoBlock - Video generation
Utility Blocks
- CombineTextBlock - Concatenate text values
- JSONExtractorBlock - Parse JSON responses
- PublishedGlifBlock - Nest other glifs
- WebFetchBlock - HTTP requests
Output Blocks
- HTMLBlock - Custom HTML rendering
- CanvasBlock - Image composition
- AudioBlock - Audio output
Variable References
Reference other blocks using {blockName}:
{
"name": "enhancer",
"type": "TextBlock",
"params": {
"prompt": "Enhance this prompt: {userInput}",
"model": "gpt-4"
}
}
Design Patterns
Basic Image Generator
TextInput → ImageBlock → Output
Prompt Enhancement
TextInput → TextBlock (enhance) → ImageBlock → Output
Multi-Image Composite
TextInput → ImageBlock (bg) ─┐
TextInput → ImageBlock (fg) ─┼→ CanvasBlock → Output
Iterative Refinement
TextInput → ImageBlock → ImageToTextBlock → TextBlock → ImageBlock → Output
Best Practices
- Keep inputs minimal - 2-3 max for usability
- Name blocks descriptively -
stylePromptnottext1 - Use alphanumeric + underscore only for names
- Chain text blocks for complex prompts
- Test incrementally - add one block at a time
Schema Reference
Full JSON schema: https://glif.app/api/graphJsonSchema
Common Models
Text: gpt-4, gpt-4o, claude-3, llama-3 Image: flux-pro, sdxl, dall-e-3, stable-diffusion-3 Video: runway-gen3, kling
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です