with one click
init
Set up or enrich AI assistant context for a Blink project
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Set up or enrich AI assistant context for a Blink project
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | init |
| description | Set up or enrich AI assistant context for a Blink project |
Set up or enrich AI assistant context for a Blink project. Works on new or existing projects.
Follow these steps in order.
Run these commands to understand what Blink offers:
blink llms --list
blink --help
Read the output and note all available CLI commands and documentation topics.
Run blink llms --full to get the complete language reference. Read through it carefully — this is your primary source of truth for Blink syntax and semantics.
Scan the project to understand what it does:
blink.toml if it exists (project name, dependencies, version).Glob **/*.bl to find all Blink source files (also check **/*.pact for legacy files).src/main.bl or src/main.pact).If this is a brand new project (no source files yet), skip this step.
Check if CLAUDE.md or AGENTS.md exists at the project root.
If a Blink section already exists (search for "blink llms"), update it. Otherwise append a new section. The section should include:
blink llms --full / --topic <name> for language docsblink build, blink run, blink check, blink testblink query <file> --fn <name> for function signature lookupblink daemon start <file> if the project has multiple filesblink fmt if formatting mattersblink doc <module> for any stdlib modules the project importsKeep it concise — only include commands and context that are actually relevant to this project.
Run blink check on the main source file to confirm the project compiles. Report what you set up.