apify-cli 1.6.3-beta.9 → 1.6.4-beta.0
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 +32 -5
- package/dist/{_register-LutQbOAI.js → _register-CV_qnnnx.js} +92 -82
- package/dist/_register-CV_qnnnx.js.map +1 -0
- package/dist/actor.js +1 -1
- package/dist/apify.js +1 -1
- package/package.json +7 -6
- package/skills/apify/SKILL.md +112 -0
- package/dist/_register-LutQbOAI.js.map +0 -1
package/README.md
CHANGED
|
@@ -13,6 +13,34 @@ Apify CLI is the command-line tool for creating, developing, and deploying [Apif
|
|
|
13
13
|
- Manage secret environment variables used by your Actors
|
|
14
14
|
- Works with any programming language — Actors run as Docker containers on the platform
|
|
15
15
|
|
|
16
|
+
## Agent skill
|
|
17
|
+
|
|
18
|
+
This repo ships an [agent skill](./skills/apify/SKILL.md) that teaches AI coding agents (Claude Code, Cursor, etc.) how to work with the Apify CLI reliably. You can print the skill straight from the CLI — it always matches your installed version:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
apify help --skill
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
If you'd rather have the skill installed persistently, `apify help --skill` prints a valid `SKILL.md` that you can redirect into your agent's skills directory. The location depends on the agent:
|
|
25
|
+
|
|
26
|
+
### Claude Code
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
mkdir -p ~/.claude/skills/apify-cli
|
|
30
|
+
apify help --skill > ~/.claude/skills/apify-cli/SKILL.md
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Codex and other agents
|
|
34
|
+
|
|
35
|
+
Codex and most other agents follow the [Agent Skills open standard](https://developers.openai.com/codex/skills), which loads skills from `.agents/skills` (per repo) or `~/.agents/skills` (per user):
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
mkdir -p ~/.agents/skills/apify-cli
|
|
39
|
+
apify help --skill > ~/.agents/skills/apify-cli/SKILL.md
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
That copy is a snapshot; re-run it after upgrading the Apify CLI to refresh it.
|
|
43
|
+
|
|
16
44
|
## Quick start
|
|
17
45
|
|
|
18
46
|
1. **Install the CLI** (macOS / Linux):
|
|
@@ -29,15 +57,14 @@ Apify CLI is the command-line tool for creating, developing, and deploying [Apif
|
|
|
29
57
|
apify login
|
|
30
58
|
```
|
|
31
59
|
|
|
32
|
-
3. **
|
|
60
|
+
3. **Run an Actor** on the Apify cloud:
|
|
33
61
|
|
|
34
62
|
```bash
|
|
35
|
-
apify
|
|
36
|
-
cd my-actor
|
|
37
|
-
apify run
|
|
38
|
-
apify push
|
|
63
|
+
apify call apify/hello-world --output-dataset
|
|
39
64
|
```
|
|
40
65
|
|
|
66
|
+
This runs the public [`apify/hello-world`](https://apify.com/apify/hello-world) Actor and prints its results. To build your own Actor instead, run `apify create` and follow the interactive wizard.
|
|
67
|
+
|
|
41
68
|
## Installation
|
|
42
69
|
|
|
43
70
|
### macOS / Linux (bundle, recommended)
|