AgentSkillsCN

chippery-status

检查 Chippery 许可证状态与当前运行模式。

SKILL.md
--- frontmatter
name: chippery-status
description: Check Chippery license status and current mode
disable-model-invocation: true
allowed-tools: Bash

License Status

Check your current Chippery license status and mode.

Usage

License status:

bash
~/.chippery/bin/chippery-license status

Current mode:

bash
cat ~/.chippery/mode 2>/dev/null || echo "balanced"

Output

The license status returns JSON with:

  • valid - Whether you have a valid license
  • type - License type (subscription, lifetime)
  • customerEmail - Email associated with license
  • expiresAt - When subscription expires (if applicable)
  • daysRemaining - Days until expiration

Example Output

With Pro license:

json
{
  "valid": true,
  "type": "subscription",
  "customerEmail": "you@example.com",
  "daysRemaining": 25
}

Without license (free tier):

json
{
  "valid": false
}

Related Commands

  • /chippery-activate <key> - Activate a license
  • /chippery-mode - View or change token mode