Skip to content

Latest commit

 

History

History
229 lines (164 loc) · 5.69 KB

File metadata and controls

229 lines (164 loc) · 5.69 KB
title Account Setup
description Create your Panguard AI account, choose a subscription plan, and configure your CLI session.
icon user-plus

Create Your Account

Go to [panguard.ai](https://panguard.ai) and click **Sign Up** in the top-right corner.
You can register with:
- **Google account** -- one-click OAuth sign-in
- **Email + password** -- traditional registration with email verification
Select the plan that fits your needs. The Community plan is free forever -- no credit card required.
| Plan | Price | Machines | Highlights |
| --- | --- | --- | --- |
| **Community** | Free | 1 | Scan + Layer 1 Guard (rules only) |
| **Solo** | $9/mo | 3 | Full 3-layer stack, basic AI |
| **Pro** | $29/mo | 10 | Report, Trap, Chat, Cloud AI |
| **Business** | $79/mo | 25 | Custom AI, API access, 90+ day logs |

<Info>
  Annual billing is available at a 20% discount on all paid plans. Visit [panguard.ai/pricing](https://panguard.ai/pricing) to compare plans in detail.
</Info>
If you registered with email, check your inbox for a verification email and confirm your account. Google OAuth users are verified automatically.

Plan Details

**1 machine -- free forever**
- Unlimited security scans (quick and full)
- Guard with Layer 1 rule engine (3000+ Sigma/YARA rules)
- Threat Cloud participation (read-only)
- Works fully offline
- No credit card required

Best for: trying Panguard, one-time audits, personal experimentation.
**3 machines -- full protection stack**
Everything in Community, plus:
- Full 3-layer Guard (rules + local AI + cloud AI)
- Chat notifications (Telegram, Slack, Email, Webhook, LINE)
- Local AI analysis via Ollama
- PDF report generation

Best for: individual developers protecting personal servers and VPS instances.
**10 machines -- complete feature set**
Everything in Solo, plus:
- Cloud AI analysis (Claude / OpenAI)
- Trap honeypots (8 service types)
- Compliance report generation (TCSA, ISO 27001, SOC 2)
- Full Report, Trap, and Chat capabilities

Best for: small teams and businesses needing compliance documentation.
**25 machines -- enterprise features**
Everything in Pro, plus:
- Custom AI model configuration
- REST API access for programmatic integration
- 90+ day log retention
- SIEM integration
- SSO and role-based access control (RBAC)
- Dedicated support

Best for: organizations with fleet management and enterprise compliance requirements.

CLI Authentication

After creating your account, authenticate the CLI to link it with your subscription.

Standard login

panguard login

The CLI automatically opens your default browser. Complete the authentication flow, then return to the terminal:

  PANGUARD AI

  -- Login Info ----------------------------------------

  Email     user@example.com
  Name      User Name
  Plan      Solo
  Expires   2026-04-27

  Login successful!

Verify your session

panguard whoami
  PANGUARD AI

  -- Account Info ----------------------------------------

  Email     user@example.com
  Name      User Name
  Plan      Solo
  Expires   2026-04-27
  Server    https://panguard.ai
CLI sessions are valid for 30 days. After expiration, run `panguard login` again to re-authenticate.

Headless and SSH servers

If you are working on a server without a browser:

panguard login --no-browser

This prints an authentication URL that you can copy and open on any device with a browser. After completing authentication on that device, the CLI session activates automatically.

  Open the following URL in your browser to complete login:
  https://panguard.ai/login?cli_state=abc123&callback=...

  Waiting for authentication...
The `--no-browser` flag is useful for CI/CD pipelines, Docker containers, and remote servers accessed via SSH.

Subscription Management

Upgrade your plan

You can upgrade at any time through the website or CLI:

panguard upgrade

Or visit panguard.ai/pricing directly.

Check your current plan

panguard whoami

Log out

panguard logout

This removes the local authentication token. Your account and subscription remain active.


Troubleshooting

Use the `--no-browser` flag and open the printed URL manually:
```bash
panguard login --no-browser
```
If you see a message indicating your plan does not support a feature, visit [panguard.ai/pricing](https://panguard.ai/pricing) to upgrade your subscription. CLI sessions expire after 30 days. Re-authenticate with:
```bash
panguard login
```

Next steps

Run your first security scan and start real-time protection in 5 minutes. Step-by-step guide to scanning, interpreting results, and generating PDF reports.