> ## Documentation Index
> Fetch the complete documentation index at: https://www.helius.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# 기술

> Helius를 사용하여 Solana에서 어떻게 AI 도우미를 구축하는지 가르치는 모델에 독립적인 지침 세트입니다. 기술은 라우팅 로직, 올바른 SDK 패턴, Claude, OpenAI, Codex, Cursor 등을 위한 사전 구축된 시스템 프롬프트를 제공합니다.

기술은 AI 도우미에게 귀하의 요청을 올바른 [MCP 도구](/docs/ko/agents/mcp/tools) 및 참조 파일로 라우팅하는 방법을 가르치는 모델에 독립적인 지침 세트입니다. 이들은 단순한 도구 액세스를 넘어 라우팅 로직, 올바른 SDK 패턴, 하드코딩된 수수료, 잘못된 엔드포인트 또는 누락된 Sender 팁과 같은 일반적인 실수를 방지하는 규칙을 포함합니다.

기술은 **모든 AI 플랫폼**에서 작동합니다 — Claude Code, Codex, OpenAI API, Claude API, Cursor, ChatGPT 등. 각 기술은 사전 구축된 시스템 프롬프트 변형과 함께 제공되어 사용 중인 도구에 바로 투입할 수 있습니다.

## 사용 가능한 기술

<CardGroup cols={2}>
  <Card title="Build" icon="hammer" href="/docs/ko/agents/skills/build">
    핵심 Solana 개발 — DAS, Sender, WebSockets, LaserStream, Webhooks, Wallet API 등
  </Card>

  <Card title="Phantom" icon="wallet" href="/docs/ko/agents/skills/phantom">
    프론트엔드 dApp 개발 — Phantom Connect SDK (React, React Native, 브라우저), 토큰 게이팅, 결제
  </Card>

  <Card title="Jupiter" icon="rocket" href="/docs/ko/agents/skills/jupiter">
    DeFi 애플리케이션 — 토큰 스왑, 대출, 리밋 주문, DCA, 토큰/가격 데이터
  </Card>

  <Card title="DFlow" icon="chart-line" href="/docs/ko/agents/skills/dflow">
    거래 애플리케이션 — 현물 스왑, 예측 시장, 실시간 스트리밍, KYC 증명
  </Card>

  <Card title="OKX" icon="chart-mixed" href="/docs/ko/agents/skills/okx">
    거래 및 인텔리전스 — OKX DEX 집계, 스마트 머니 신호, 밈 토큰 분석
  </Card>

  <Card title="SVM" icon="microchip" href="/docs/ko/agents/skills/svm">
    Solana 프로토콜 내부 — SVM 실행, 합의, 계정 모델, 검증자 경제
  </Card>
</CardGroup>

## 기술 작동 방식

기술은 3계층 프롬프트 아키텍처를 따릅니다:

| Layer          | 설명                     | 위치                                                       |
| -------------- | ---------------------- | -------------------------------------------------------- |
| **A: Harness** | 에이전트/런타임 특정 동작 및 도구 규칙 | 내장 (Claude Code), `AGENTS.md` (Codex), 프롬프트 변형의 서문 (API) |
| **B: Skills**  | 표준, 재사용 가능한 모델 독립 절차   | `SKILL.md` 파일 + `references/` 디렉토리                       |
| **C: Task**    | 사용자 요청 + 동적 컨텍스트       | 각 플랫폼에서 런타임에 제공                                          |

기술 콘텐츠 (Layer B)는 플랫폼 전반에서 동일하며, 하니스 래퍼 (Layer A)만 다릅니다.

각 기술에는 다음이 포함됩니다:

* **라우팅 로직** — 귀하의 요청을 올바른 MCP 도구 및 참조 파일에 매핑합니다
* **참조 파일** — AI가 코드를 작성하기 전 각 Helius 제품에 대한 심층 문서화
* **규칙** — 일반적인 실수 방지 (예: 하드코딩된 우선 수수료, 잘못된 RPC 엔드포인트, 누락된 오류 처리)

## 플랫폼 간 기술 사용

각 기술은 `prompts/` 디렉토리에 세 가지 사전 구축된 프롬프트 변형이 함께 제공됩니다:

| 파일                    | 사용 사례                               | 형식                                                   |
| --------------------- | ----------------------------------- | ---------------------------------------------------- |
| `openai.developer.md` | OpenAI 응답 / 채팅 완료 API               | Layer A 서문 + `=== BEGIN SKILL ===` 구분 기호가 포함된 기술 콘텐츠 |
| `claude.system.md`    | Claude API 시스템 프롬프트                 | 서문 + 구분 기호가 포함된 기술 콘텐츠                               |
| `full.md`             | Cursor 규칙, ChatGPT 사용자 지정 지침, 기타 도구 | 모든 참조 파일 인라인, 외부 종속성 없음                              |

이들을 찾을 수 있는 위치:

* **Repo**: `.agents/skills/<skill>/prompts/`
* **npm 패키지**: `helius-mcp/system-prompts/<skill>/`

<Tabs>
  <Tab title="Vercel Skills CLI">
    [Vercel Skills CLI](https://skills.sh/)를 사용하여 기술을 AI 코딩 에이전트에 직접 설치합니다. Claude Code, Cursor, Copilot, Codex 등과 호환됩니다.

    ```bash theme={"system"}
    # Install a single skill
    npx skills add helius-labs/core-ai --skill build

    # Browse all available Helius skills
    npx skills add helius-labs/core-ai --list
    ```

    | 기술                                                                  | 설치 명령                                                |
    | ------------------------------------------------------------------- | ---------------------------------------------------- |
    | **build** — 핵심 Solana 개발 (Sender, DAS, WebSockets, LaserStream, 웹훅) | `npx skills add helius-labs/core-ai --skill build`   |
    | **phantom** — 프론트엔드 dApps (Phantom Connect, React, 토큰 게이팅)          | `npx skills add helius-labs/core-ai --skill phantom` |
    | **jupiter** — DeFi 앱 (스왑, 대출, 리밋 주문, DCA)                           | `npx skills add helius-labs/core-ai --skill jupiter` |
    | **dflow** — 거래 앱 (스왑, 예측 시장, 스트리밍, KYC)                             | `npx skills add helius-labs/core-ai --skill dflow`   |
    | **okx** — 거래 및 인텔리전스 (OKX DEX, 스마트 머니, 밈 스캐너)                       | `npx skills add helius-labs/core-ai --skill okx`     |
    | **svm** — 프로토콜 내부 (SVM 엔진, 합의, 계정 모델)                               | `npx skills add helius-labs/core-ai --skill svm`     |
  </Tab>

  <Tab title="Claude Code Plugin">
    [Helius 플러그인](/docs/ko/agents/claude-code-plugin)은 모든 기술과 MCP 서버를 하나의 설치로 번들로 제공합니다. Anthropic-추천 레지스트리에서:

    ```bash theme={"system"}
    claude plugin install helius @claude-plugins-official
    ```

    또는 Claude Code 내 Helius 마켓플레이스에서:

    ```
    /plugin marketplace add helius-labs/core-ai
    /plugin install helius@helius-labs
    ```

    기술은 `/helius:build`, `/helius:phantom`, `/helius:jupiter`, `/helius:dflow`, `/helius:okx`, `/helius:svm`로 호출됩니다.
  </Tab>

  <Tab title="Claude Code Standalone">
    각 기술은 자신만의 `install.sh` 스크립트를 사용하여 독립적으로 설치할 수 있습니다:

    ```bash theme={"system"}
    git clone https://github.com/helius-labs/core-ai.git
    cd core-ai/helius-skills
    ./helius/install.sh            # Install to ~/.claude/skills/helius/
    ./helius/install.sh --project  # Or install to current project
    ```

    독립 실행형 기술은 에이전트 기술로 자동 호출됩니다 — 슬래시 명령이 필요하지 않습니다.
  </Tab>

  <Tab title="Codex CLI">
    Codex는 프로젝트 루트의 `.agents/skills/`에서 기술을 자동으로 발견합니다:

    ```bash theme={"system"}
    # Copy the .agents/ directory into your project
    cp -r /path/to/core-ai/.agents/ your-project/
    ```

    기술은 작업이 일치할 때 암묵적으로 또는 `$helius`, `$helius-phantom`, `$helius-jupiter`, `$helius-dflow`, `$helius-okx`, `$svm`로 명시적으로 트리거됩니다.
  </Tab>

  <Tab title="OpenAI API">
    `openai.developer.md`를 `developer` 메시지로 사용하십시오:

    ```python theme={"system"}
    from openai import OpenAI

    client = OpenAI()

    with open(".agents/skills/helius/prompts/openai.developer.md") as f:
        skill_prompt = f.read()

    response = client.responses.create(
        model="o3",
        instructions=skill_prompt,
        input="Build a swap interface that submits via Helius Sender"
    )
    ```

    또한 `{"role": "developer", "content": skill_prompt}`를 사용하여 채팅 완료와 함께 작동합니다.
  </Tab>

  <Tab title="Claude API">
    `claude.system.md`를 시스템 프롬프트로 사용하십시오:

    ```python theme={"system"}
    import anthropic

    client = anthropic.Anthropic()

    with open(".agents/skills/helius/prompts/claude.system.md") as f:
        skill_prompt = f.read()

    message = client.messages.create(
        model="claude-sonnet-4-6-20250514",
        max_tokens=4096,
        system=skill_prompt,
        messages=[
            {"role": "user", "content": "Build a swap interface that submits via Helius Sender"}
        ]
    )
    ```
  </Tab>

  <Tab title="Cursor / ChatGPT">
    `full.md`를 사용하십시오 — 모든 참조 파일을 인라인으로 내장하므로 외부 종속성이 없습니다.

    **Cursor:** `.cursor/rules/helius.md`에 복사합니다:

    ```bash theme={"system"}
    cp .agents/skills/helius/prompts/full.md .cursor/rules/helius.md
    ```

    **ChatGPT 사용자 정의 지침:** 기본 `SKILL.md` 콘텐츠를 사용하십시오 (`full.md`는 ChatGPT의 8,000자 제한을 초과할 수 있습니다).
  </Tab>
</Tabs>

## 사전조건

모든 기술은 [Helius MCP 서버](/docs/ko/agents/mcp)가 실행 중이어야 합니다 (또는 에이전트 프레임워크에서 적절한 도구가 구성되어야 합니다). DFlow 기술은 추가로 [DFlow MCP 서버](https://pond.dflow.net/build/mcp)가 필요합니다. Phantom 기술은 통합 지갑을 위해 [Phantom Portal](https://phantom.com/portal) 계정이 필요합니다. Jupiter 기술은 [Jupiter API 키](https://developers.jup.ag/portal)가 필요합니다. OKX 기술은 [OKX 기술 라이브러리](https://github.com/okx/onchainos-skills)와 `onchainos` CLI가 필요합니다.

| 기술                                   | 필요 사항                                       | API 키 필요                          |
| ------------------------------------ | ------------------------------------------- | --------------------------------- |
| [Build](/docs/ko/agents/skills/build)     | Helius MCP                                  | 예 (Helius)                        |
| [Phantom](/docs/ko/agents/skills/phantom) | Helius MCP                                  | 예 (Helius)                        |
| [Jupiter](/docs/ko/agents/skills/jupiter) | Helius MCP                                  | 예 (Helius + Jupiter)              |
| [DFlow](/docs/ko/agents/skills/dflow)     | Helius MCP + DFlow MCP                      | 예 (Helius + DFlow for production) |
| [OKX](/docs/ko/agents/skills/okx)         | Helius MCP + OKX 기술 라이브러리 + `onchainos` CLI | 예 (Helius; OKX는 개발 시 선택)          |
| [SVM](/docs/ko/agents/skills/svm)         | Helius MCP                                  | 아니오                               |
