Skill · em Outros

curviate-quickstart

The first run: install the Curviate CLI, authenticate this machine with `curviate setup`, confirm with `curviate doctor`, connect a LinkedIn account, and prove the whole path works by reading the same profile live and then from the store. Use when Curviate is being set up for the first time, when…

Procedência

Antes de instalar

1 arquivo · 11,2 KB · só texto, nenhum script

Instalar na sua CLI

O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.

Claude Code

Neste projeto: instala em .claude/skills/curviate-quickstart/.

d=".claude/skills/curviate-quickstart"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/curviate/curviate-quickstart"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.claude/skills/curviate-quickstart/.

d="$HOME/.claude/skills/curviate-quickstart"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/curviate/curviate-quickstart"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Codex

Neste projeto: instala em .agents/skills/curviate-quickstart/.

d=".agents/skills/curviate-quickstart"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/curviate/curviate-quickstart"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.agents/skills/curviate-quickstart/.

d="$HOME/.agents/skills/curviate-quickstart"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/curviate/curviate-quickstart"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Antigravity

Neste projeto: instala em .agents/skills/curviate-quickstart/.

d=".agents/skills/curviate-quickstart"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/curviate/curviate-quickstart"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.gemini/antigravity-cli/skills/curviate-quickstart/.

d="$HOME/.gemini/antigravity-cli/skills/curviate-quickstart"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/curviate/curviate-quickstart"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Peça ao Rook

Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/cct.curviate-quickstart

Prévia do SKILL.md

---
name: curviate-quickstart
description: "The first run: install the Curviate CLI, authenticate this machine with `curviate setup`, confirm with `curviate doctor`, connect a LinkedIn account, and prove the whole path works by reading the same profile live and then from the store. Use when Curviate is being set up for the first time, when `curviat…
version: 0.1.0
author: Curviate
license: MIT
tags: [LinkedIn, CLI, Agents, Sales, Recruiting, Outreach]
repository: https://github.com/Curviate/curviate-plugin
---

# Curviate: the first run

Four steps, in this order: install, authenticate, connect an account, prove it. Every command here
is a read. Nothing in this skill posts, messages, invites, follows or endorses anyone.

Established against CLI `0.33.0`.

## 1. Install the CLI

```bash
npm install -g @curviate/cli
curviate --version    # needs Node 18 or newer
```

## 2. Authenticate this machine: `curviate setup`

`setup` opens the dashboard, takes the short code it shows you, and saves an API key into a local
profile. **The key is never printed and never passed on a command line.**

The command has two shapes, and which one you get is decided by whether **stdout** is a terminal.

### Agent shape: two legs, because a browser has to happen in between

When stdout is not a terminal, or when `--json` is passed, `setup` prints a JSON object and exits
`0`. It does not prompt and it does not open a browser:

```bash
curviate setup --json
# {"authorize_url":"…","next_step":"curviate setup --code -","instructions":"…"}
```
…

Ver todo o marketplace