원클릭으로
init
Set up or enrich AI assistant context for a Blink project
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Set up or enrich AI assistant context for a Blink project
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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.