Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

connectconnect 搜索

Agent Skill

connect 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

349

周安装

14

GitHub Stars

60

下载量

113
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:connect(connect 搜索)
来源仓库:https://github.com/popmechanic/vibes-cli
仓库路径:skills/connect
安装命令:
npx skills add https://github.com/popmechanic/vibes-cli --skill connect
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/popmechanic/vibes-cli --skill connect

简介

Connect 搜索用于处理 GitHub 仓库及协作信息,适合整理代码变更和 Issue 事项。

  • 它可协助分析 Pull Request 和仓库状态,适用于开发流程中的协作信息管理。
  • 通过 npx skills add 命令从指定仓库安装,具体行为需结合原始 README 验证。
  • 使用前应确认权限范围和维护状态,避免不必要的联网或文件读写操作。
  • connect 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Plan mode: If you are planning work, this entire skill is ONE plan step: "Invoke /vibes:connect". Do not decompose the steps below into separate plan tasks.

Deploy Connect Studio

Deploy Fireproof Connect to exe.dev as your personal sync backend. Your Studio VM runs the full Fireproof sync stack and can be used by multiple apps.

Prerequisites

  1. SSH key in ~/.ssh/ (id_ed25519, id_rsa, or id_ecdsa)
  2. exe.dev account - run ssh exe.dev once to create your account
  3. Clerk credentials from clerk.com:

- Publishable Key (pk_test_... or pk_live_...) - Secret Key (sk_test_... or sk_live_...)

Gather Config

Use AskUserQuestion to collect deployment config before running the deploy script.

Question 0: "Have you created an exe.dev account? (Run `ssh exe.dev` in your terminal to create one)"
Header: "exe.dev"
Options:
- Label: "Yes, I have an account"
  Description: "I've already run ssh exe.dev and verified my account."
- Label: "No, I need to set one up"
  Description: "I haven't created an exe.dev account yet."

If "No": Instruct the user:

Run ssh exe.dev in your terminal. This will create your account automatically. You'll need an SSH key in ~/.ssh/ (the command will guide you). Once your account is confirmed, come back and we'll continue.

Then STOP and wait for them to confirm they've completed this step.

Question 1: "What codename for your Studio? (becomes <codename>.exe.xyz)"
Header: "Studio"
Options: Suggest "${username}-studio" + user enters via "Other"

Question 2: "Do you have your Clerk keys ready?"
Header: "Clerk"
Options: ["Yes, I have them", "No, I need to get them first"]

If user needs Clerk keys, provide these instructions:

  1. Go to clerk.com and sign in
  2. Select your application (or create one)
  3. Go to API Keys in the sidebar
  4. Copy both the Publishable Key and Secret Key

After receiving the codename, ask for the keys:

Question: "Paste your Clerk Publishable Key (starts with pk_test_ or pk_live_)"
Header: "Publishable"
Options: [User enters via "Other"]

Question: "Paste your Clerk Secret Key (starts with sk_test_ or sk_live_)"
Header: "Secret"
Options: [User enters via "Other"]

Deploy Command

cd "${CLAUDE_PLUGIN_ROOT}/scripts" && [ -d node_modules ] || npm install
node "${CLAUDE_PLUGIN_ROOT}/scripts/deploy-connect.js" \
  --studio <codename> \
  --clerk-publishable-key "pk_test_..." \
  --clerk-secret-key "sk_test_..."

What It Does

  1. SSH to <studio>.exe.xyz - Creates VM if needed
  2. Clone fireproof repo - selem/docker-for-all branch to /opt/fireproof
  3. Generate security tokens - Session tokens and device CA keys
  4. Create .env - All credentials for Docker services
  5. Run ./docker/start.sh - Starts the full Fireproof stack
  6. Wait for services - Confirms port 8080 is responding
  7. Write local .connect - Saves studio info for future reference

Architecture

Studio VM (<codename>.exe.xyz)
├── /opt/fireproof/
│   ├── docker-compose.yaml (from repo)
│   ├── docker/
│   │   ├── nginx.conf (routes all traffic)
│   │   └── start.sh (orchestrates services)
│   └── .env (generated credentials)
└── Docker services (port 8080 exposed)
    ├── nginx proxy
    ├── dashboard (internal 7370)
    └── cloud-backend (internal 8909)

Public URLs

After deployment, your Studio exposes:

EndpointURLPurpose
Token APIhttps://<studio>.exe.xyz/apiToken issuance for auth
Cloud Syncfpcloud://<studio>.exe.xyz?protocol=wssReal-time sync

Local .connect File

The deploy script creates a .connect file in your project:

studio: <codename>
api_url: https://<codename>.exe.xyz/api
cloud_url: fpcloud://<codename>.exe.xyz?protocol=wss
clerk_publishable_key: pk_test_...

This file is gitignored and used to auto-configure app deployments.

Update Your App's Environment

After deploying Connect, update your app's .env:

VITE_CLERK_PUBLISHABLE_KEY=pk_test_...
VITE_API_URL=https://<studio>.exe.xyz/api
VITE_CLOUD_URL=fpcloud://<studio>.exe.xyz?protocol=wss

Troubleshooting

Check Docker status:

ssh <studio>.exe.xyz "cd /opt/fireproof && sudo docker compose ps"

View logs:

ssh <studio>.exe.xyz "cd /opt/fireproof && sudo docker compose logs -f"

Restart services:

ssh <studio>.exe.xyz "cd /opt/fireproof && sudo docker compose restart"

CLI Options

OptionDescription
--studio <name>Studio VM name (required)
--clerk-publishable-key <key>Clerk publishable key (required)
--clerk-secret-key <key>Clerk secret key (required)
--dry-runShow what would be done without executing

What's Next?

After successful deployment, present these options using AskUserQuestion:

Question: "Your Connect Studio is live at https://${studio}.exe.xyz! What's next?"
Header: "Next"
Options:
- Label: "Deploy an app that uses this Studio"
  Description: "Generate and deploy a Vibes app configured to sync through your Studio. I'll set up the environment automatically."

- Label: "Update an existing app to use Connect"
  Description: "Configure an existing app's .env to point to your new Studio for cloud sync."

- Label: "I'm done for now"
  Description: "Your Studio is running 24/7 on exe.dev. Any app configured with these URLs will sync through it."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.88%
按下载量换算39

Claude

28.73%
按下载量换算32

Cursor

18.75%
按下载量换算21

Gemini CLI

8.23%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills