Token导航 LogoToken导航TokenDH.com
研究检索敏感数据unknown未标认证来源可访问许可证需确认审计通过

setup-hyperspell设置超级拼写

Agent Skill

setup-hyperspell 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,331

周安装

51

下载量

420
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:setup-hyperspell(设置超级拼写)
来源仓库:https://docs.hyperspell.com
仓库路径:setup-hyperspell
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

为 Local Agent 提供拼写检查和语言校正相关能力支持。

  • 适用于需要文本质量校验或语言优化的本地代理环境。setup-hyperspell 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装方式未明确,建议查阅官方文档获取准确接入方法。
  • 可能涉及本地词典加载和文本处理,需注意资源占用情况。
  • 当前信息有限,推荐查看来源站点了解具体功能边界。

SKILL.md

Setup Hyperspell

This skill walks you through integrating Hyperspell into a project. It references detailed sub-guides hosted at https://docs.hyperspell.com/skills/. You MUST fetch and read those links when instructed — they contain the implementation details for each step.

Instructions

Copy this checklist and track your progress:

Implementation Progress:
- [ ] Step 1: Install the Hyperspell SDK
- [ ] Step 2: Configure the API Key
- [ ] Step 3: Detect Project Type
- [ ] Step 4: Choose Memory Ingestion Method
- [ ] Step 5: Set Up Memory Ingestion
- [ ] Step 6: Set Up Memory Search
- [ ] Step 7: Wrapping Up

Run the following command and note the output as $START_TIME:

date -u +%Y-%m-%dT%H:%M:%SZ

Step 1: Welcome the User

Display the following message to the user:

Hi {NAME}, I'll help you integrate Hyperspell into {PROJECT_NAME}. Hyperspell gives your agents memory and context from a broad range of data sources. Do you already have a Hyperspell account?

If possible, display a multiple choice yes / no option, otherwise simply listen to the user input.

If they don't have an account yet, display this:

Go to https://app.hyperspell.com and create a free account. Then, create an app for {PROJECT_NAME} and pick which integrations, if any, you want to let your users use. Finally, create an API Key and paste it here.

Step 1: Install the Hyperspell SDK

Determine whether the hyperspell SDK is already installed. If not, install it:

  • For TypeScript/JavaScript projects: npm i hyperspell or yarn add hyperspell
  • For Python projects: uv add hyperspell or pip install hyperspell (use whatever package manager the project uses)

Step 2: Configure the API Key

When the user invoked this command, they may have passed an API key as an argument: '$1'

If that string is blank or not a valid API key, display this message and wait for the user to paste their key:

Please paste your Hyperspell API key below.

If you don't have one yet, create one at https://app.hyperspell.com/api-keys

Do NOT use a multiple choice menu for this step - just ask directly and let the user paste their key.

Once you have the API key, put it in .env.local (or .env if .env.local doesn't exist) as HYPERSPELL_API_KEY.

If this project contains an .env.example, also put a dummy key in there (HYPERSPELL_API_KEY=hs-0-xxxxxxxxxxxxxxxxxxxxxx)

Step 3: Detect Project Type

Fetch and follow the instructions in detect-project.md to analyze the codebase and determine:

  • Repo type: Backend, Frontend-only, or Monorepo/Fullstack
  • Language: TypeScript/JavaScript or Python
  • Framework: Next.js (App/Pages Router), Express, FastAPI, SPA, etc.
  • Auth system: Clerk, Auth0, NextAuth, custom, or none
  • AI SDK: Vercel AI SDK, LangChain, or none

Store these detection results for use in subsequent steps.

Step 4: Ask How User Wants to Add Memories

Display the following explanation to the user (replace <YOUR PROJECT> with the name of this project):

Hyperspell can create memories from many sources: email, Slack, documents, chat transcripts, or uploaded files.

Most projects let their users connect their accounts (Gmail, Slack, etc.) for automatic memory ingestion. Other projects add memories programmatically by uploading files or tracking conversations.

How do you want to create memories in <YOUR PROJECT>?

Ask the user with this multiple choice:

  • Let users connect their accounts - Users authorize their Gmail, Slack, etc. and Hyperspell automatically ingests their data
  • Add memories directly - You programmatically add memories via API (file uploads, conversation tracking, etc.)

Step 5: Set Up Memory Ingestion

Based on the user's choice in Step 4 and the detection results from Step 3, set up the appropriate ingestion method.


If user chose "Let users connect their accounts" (OAuth):

The OAuth flow requires two pieces:

  1. A backend endpoint that generates user tokens (using your API key)
  2. A frontend that redirects users to connect.hyperspell.com with that token

Fetch and follow the instructions in oauth.md and implement what applies to this project:

  • If the project has a backend: Create the token endpoint using the framework examples in oauth.md.
  • If the project has NO backend (frontend-only): Display this message: The OAuth connect flow requires a backend endpoint to securely generate user tokens. You'll need to create an endpoint on a separate backend that calls Hyperspell's /auth/user_token API, then have your frontend fetch from that endpoint. Then continue with the frontend setup, leaving a TODO placeholder for the token endpoint URL.
  • If the project has a frontend: Create the connect button component using the React example in oauth.md.
  • If the project has NO frontend (backend-only): Display this message: Since this is a backend-only project, you'll need to redirect users to the connect page from your external frontend. The token endpoint is ready - your frontend should fetch a token from it, then redirect to: https://connect.hyperspell.com?token={token}&redirect_uri={returnUrl}

If user chose "Add memories directly" (Programmatic):

  • If the project has a backend: Fetch and follow the instructions in direct-ingestion.md to set up memory operations. Use the SDK with your API key and pass the user ID directly.
  • If the project has NO backend (frontend-only): Display this message: Adding memories directly from a frontend requires a backend endpoint to securely make Hyperspell API calls. You'll need to either: 1. Create a backend endpoint that proxies memory operations, OR 2. Create a backend endpoint that generates user tokens (see oauth.md for examples) Then follow direct-ingestion.md, noting that the user will need to set up the backend piece separately.

Step 6: Set Up Memory Search (SDK Integration)

Display the following message:

Now that we've set up memory ingestion, let's integrate Hyperspell into your app so it can search and use those memories.

Determine the integration pattern:

First, analyze the codebase to see if the project has an existing AI/LLM integration with tools or function calling.

  • If the agent already uses tools → Use Pattern 1: Hyperspell as a Tool. Do not ask, just proceed with this pattern.
  • If it's a simple conversational agent with no tools → Ask the user which pattern they prefer (see below).
  • If there's no AI integration yet or it's unclear → Ask the user which pattern they prefer (see below).

When asking the user, present these options:

How would you like to integrate Hyperspell's memory search?
  • As a tool in your AI calls (Recommended) - Your AI decides when to search memories. Best for agents with multiple capabilities or when you want intelligent search decisions.
  • Direct search with AI answer - Hyperspell answers questions directly from memories. Best for simple Q&A bots without other tools.
  • Direct search for context only - Get relevant memory snippets to use however you want. Best for custom RAG pipelines or non-AI uses.

Important: Do not use "Direct search with AI answer" to replace an existing AI call if that call relies on other tools - those tools cannot be passed to the Hyperspell API.

Based on the user's choice, fetch and follow the appropriate section in search.md:

  • "As a tool" → Create the search helper, then follow the tool integration for their SDK (Vercel AI, OpenAI, Anthropic, etc.)
  • "Direct search with AI answer" → Create the search helper only, call it with answer: true from existing code. Do NOT create a tool wrapper.
  • "Direct search for context only" → Create the search helper only, call it with answer: false from existing code. Do NOT create a tool wrapper.

Step 7: Wrapping Up

Run the following command:

date -u +%Y-%m-%dT%H:%M:%SZ

Compare the output with $START_TIME and calculate how many minutes have passed as DURATION.

Display the following message (replace DURATION with the actual duration):

Congratulations! You've successfully integrated Hyperspell in just DURATION minutes!

This is just the beginning of your journey with Hyperspell. As your project grows, Hyperspell grows with you. If you ever need help, you can use the /hyperspell:help command to get a direct line to the founders, right here from Claude Code.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

93.46%
按下载量换算393

安全审计

Socket

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills