neodrop-cli 1.2.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -42,7 +42,7 @@ No browser is auto-launched, no local port is opened, no callback is needed —
42
42
  | Area | What you can do | Commands |
43
43
  |---|---|---|
44
44
  | **Identity** | Who am I, and manage my access tokens | `me` · `whoami` · `tokens list` · `tokens revoke <id>` |
45
- | **Channels** | Browse, search, create and subscribe to channels | `channels list` · `get` · `search` · `create` · `subscribe` · `unsubscribe` · `categories` · `by-category` |
45
+ | **Channels** | Browse, search, create (async) and subscribe to channels | `channels list` · `get` · `search` · `create` · `create-status` · `run` · `subscribe` · `unsubscribe` · `categories` · `by-category` |
46
46
  | **Posts** | Read and search content; view your subscribed feed | `posts list` · `get` · `search` · `feed` |
47
47
  | **Chat** | Message a Neodrop AI assistant and get the full reply | `chat "<message>" [--session <id> \| --channel <id>]` · `chat history` · `chat sessions` |
48
48
  | **Raw procedure** | Call any tRPC procedure with no sugar command | `api <procedure> [--json '…' \| --stdin] [--mutation]` |
package/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: neodrop-cli
3
- version: 1.2.0
3
+ version: 2.0.1
4
4
  tested_with:
5
5
  neodrop_api: "2026-07"
6
6
  node: ">=18"
@@ -59,7 +59,7 @@ Full flow + security model + reusing credentials across machines: [`references/a
59
59
  | Scenario | Command | Details |
60
60
  |---|---|---|
61
61
  | Current user / token | `me` / `whoami` / `tokens list` | [`references/commands.md#identity`](references/commands.md#identity) |
62
- | View / search / create / subscribe channels | `channels list/get/search/create/subscribe/unsubscribe`, `channels categories`, `channels by-category` | [`references/commands.md#channels`](references/commands.md#channels) |
62
+ | View / search / create / subscribe channels | `channels list/get/search/create/create-status/run/subscribe/unsubscribe`, `channels categories`, `channels by-category` | [`references/commands.md#channels`](references/commands.md#channels) |
63
63
  | View / search post content | `posts list/get/search`, `feed` | [`references/commands.md#posts`](references/commands.md#posts) |
64
64
  | Chat with the AI assistant (send a message, wait for the full reply) | `chat "<message>" [--session <id> \| --channel <id>]`, `chat history`, `chat sessions` | [`references/commands.md#chat`](references/commands.md#chat) |
65
65
  | A procedure with no sugar command | `api <procedure> [--json '…' \| --stdin] [--mutation]` | [`references/commands.md#api`](references/commands.md#api) |
@@ -68,6 +68,7 @@ Full flow + security model + reusing credentials across machines: [`references/a
68
68
 
69
69
  ## Hard rules for the AI
70
70
 
71
+ - **Channel creation is async and costs credits**: `channels create` starts the creation agent (same pipeline as the web wizard) and usually takes a few minutes. Tell the user creation has started, then poll `channels create-status <taskId>` (or use `--wait`). Don't report "channel created" until the task status is `COMPLETED`.
71
72
  - **De-dupe before creating a channel**: run `channels list --mine` to check you don't already own one on the topic, then `channels search` against the public pool for a same-name channel — avoid duplicates.
72
73
  - **`channels get <id>` before subscribing** to check locale / private / topic — don't subscribe blindly.
73
74
  - **Never hand-craft links from memory** — `posts get` / `channels get` / `me` already print `🔗 <canonical-url>` to stderr; use that line.