Metadata-Version: 2.4
Name: cclight
Version: 1.0.0
Summary: ESP32 LED status indicator for Claude Code
Project-URL: Homepage, https://github.com/codeskyblue/cclight
Project-URL: Repository, https://github.com/codeskyblue/cclight
Author: codeskyblue
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: pyserial>=3.5
Requires-Dist: python-daemon>=3.1.2
Description-Content-Type: text/markdown

# CCLight Status Indicator Plugin

> 通过 ESP32 LED 灯光显示 Claude Code 的工作状态

## 安装方法

### 方式一：通过 Claude Code 插件市场（推荐）

```bash
# 启动 claude code
claude

# 1. 添加 GitHub marketplace
/plugin marketplace add codeskyblue/cclight

# 2. 安装插件
/plugin install cclight@cclight-marketplace
```

### 方式二：通过 pip / uv 安装

```bash
# 使用 pip
pip install cclight

# 使用 uv
uv pip install cclight
```

安装后 `cclight` 命令即可使用：

```bash
# 启动 daemon（首次使用会自动启动）
cclight state working
cclight state idle
cclight state input

# 手动管理 daemon
cclight daemon start
cclight daemon stop
cclight daemon status
```

> **开发调试？** 查看 [DEVELOP.md](DEVELOP.md) 了解本地开发和调试方法。

## 验证安装

安装成功后，在 Claude Code 中运行：

```bash
/plugin list
```

应该能看到 `cclight` 已启用。

# 参考文档

- 创建marketplace: https://code.claude.com/docs/zh-CN/plugin-marketplaces#create-the-marketplace-file
- plugins参考: https://code.claude.com/docs/zh-CN/plugins-reference
- 类似项目: https://github.com/bobek-balinek/claude-lamp
