Skip to content

Commit 5abd341

Browse files
committed
Nick: updates
1 parent 8607c77 commit 5abd341

File tree

5 files changed

+2
-315
lines changed

5 files changed

+2
-315
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firecrawl-cli",
3-
"version": "1.11.1",
3+
"version": "1.11.2",
44
"description": "Command-line interface for Firecrawl. Scrape, crawl, and extract data from any website directly from your terminal.",
55
"main": "dist/index.js",
66
"bin": {

skills/firecrawl-cli/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Must be installed and authenticated. Check with `firecrawl --status`.
2828
- **Concurrency**: Max parallel jobs. Run parallel operations up to this limit.
2929
- **Credits**: Remaining API credits. Each scrape/crawl consumes credits.
3030

31-
If not ready, see [rules/install.md](rules/install.md). For output handling guidelines, see [rules/security.md](rules/security.md). If the user has no account, use `firecrawl signup --email <email> --accept-terms` to create one with 50 free credits.
31+
If not ready, see [rules/install.md](rules/install.md). For output handling guidelines, see [rules/security.md](rules/security.md).
3232

3333
```bash
3434
firecrawl search "query" --scrape --limit 3

skills/firecrawl-cli/rules/install.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -53,27 +53,6 @@ Ask the user how they'd like to authenticate:
5353

5454
1. **Login with browser (Recommended)** - Run `firecrawl login --browser`
5555
2. **Enter API key manually** - Run `firecrawl login --api-key "<key>"` with a key from firecrawl.dev
56-
3. **Create a new account (free credits)** - Run `firecrawl signup` to create a new account with 50 free credits
57-
58-
### Agent Signup (no account needed)
59-
60-
If the user doesn't have a Firecrawl account, an agent can create one with 50 free credits:
61-
62-
```bash
63-
# Non-interactive (recommended for agents)
64-
firecrawl signup --email user@example.com --accept-terms
65-
66-
# Interactive
67-
firecrawl signup
68-
```
69-
70-
The agent name is auto-detected from the environment (Cursor, VS Code, Claude Code, etc.). A verification email is sent so the user can confirm or revoke the key. After signup, the CLI is authenticated and ready to use immediately.
71-
72-
Use `firecrawl signup` when:
73-
- The user doesn't have a Firecrawl account
74-
- The user doesn't have an API key handy
75-
- Browser login isn't available or fails
76-
- You're setting up Firecrawl for the first time in a project
7756

7857
### Command not found
7958

src/commands/signup.ts

Lines changed: 0 additions & 265 deletions
This file was deleted.

src/index.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import {
2828
import { handleVersionCommand } from './commands/version';
2929
import { handleLoginCommand } from './commands/login';
3030
import { handleLogoutCommand } from './commands/logout';
31-
import { handleSignupCommand } from './commands/signup';
3231
import {
3332
handleInitCommand,
3433
scaffoldTemplate,
@@ -1109,32 +1108,6 @@ program
11091108
await handleLogoutCommand();
11101109
});
11111110

1112-
program
1113-
.command('signup')
1114-
.description(
1115-
'Create a Firecrawl account with free credits (for AI agents setting up on behalf of users)'
1116-
)
1117-
.option(
1118-
'-e, --email <email>',
1119-
'Email address for the account (skips interactive prompt)'
1120-
)
1121-
.option(
1122-
'--agent-name <name>',
1123-
'Name of the AI agent creating the account (auto-detected if not set)'
1124-
)
1125-
.option('--accept-terms', 'Accept the Terms of Service without prompting')
1126-
.option('--api-url <url>', 'API URL (default: https://api.firecrawl.dev)')
1127-
.option('--json', 'Output as JSON format', false)
1128-
.action(async (options) => {
1129-
await handleSignupCommand({
1130-
email: options.email,
1131-
agentName: options.agentName,
1132-
acceptTerms: options.acceptTerms,
1133-
apiUrl: options.apiUrl,
1134-
json: options.json,
1135-
});
1136-
});
1137-
11381111
program
11391112
.command('init')
11401113
.description(

0 commit comments

Comments
 (0)