en un clic
init
Set up or enrich AI assistant context for a Blink project
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Set up or enrich AI assistant context for a Blink project
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
| 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.