cycle-history-viewer
/install jpeng-cycle-history-viewer
Cycle History Viewer
Views and searches evolution cycle history with filtering capabilities.
Usage
const viewer = require('./skills/cycle-history-viewer');
// Get a specific cycle
const status = viewer.get('/path/to/workspace', 486);
// Search with filters
const results = viewer.search('/path/to/workspace', {
intent: 'innovation',
result: 'success',
keyword: 'skill',
limit: 20
});
// Get summary statistics
const stats = viewer.summary('/path/to/workspace', 100);
// Generate report
console.log(viewer.generateReport('/path/to/workspace', 20));
API
listFiles(workspacePath)
Lists all cycle status files with metadata.
get(workspacePath, cycle)
Gets a specific cycle's status data.
search(workspacePath, filters)
Searches cycle history with filters.
Filters:
intent- Filter by intent (innovation|repair|optimize)result- Filter by result (success|failed)keyword- Search keyword in status textlimit- Max results (default: 50)
Returns:
[{
cycle: number,
result: string,
en: string,
zh: string
}]
summary(workspacePath, count)
Gets summary statistics for recent cycles.
Returns:
{
total: number,
success: number,
failed: number,
successRate: number,
byIntent: { innovation, repair, optimize },
recentCycles: [{ cycle, result, intent }]
}
generateReport(workspacePath, count)
Generates markdown report of recent cycles.
exportJson(workspacePath, count)
Exports history to JSON format.
Status Files
Reads from logs/status_XXXX.json files created by each evolution cycle.
Example Output
# 📜 Evolution Cycle History
## Summary
| Metric | Value |
|--------|-------|
| Cycles Shown | 20 |
| Success Rate | 95.0% |
| Innovation | 15 |
| Repair | 3 |
| Optimize | 2 |
## Last 20 Cycles
| Cycle | Result | Intent | Description |
|-------|--------|--------|-------------|
| 0486 | ✅ | innovation | Created evolution-metrics-tracker skill |
| 0485 | ✅ | innovation | Created skill-deprecation-scanner skill |
| 0484 | ✅ | innovation | Created tool-call-logger skill |
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install jpeng-cycle-history-viewer - 安装完成后,直接呼叫该 Skill 的名称或使用
/jpeng-cycle-history-viewer触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
cycle-history-viewer 是什么?
Views and searches evolution cycle history with filtering capabilities for tracking progress and analyzing patterns. Use when reviewing past cycles, searchin... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 118 次。
如何安装 cycle-history-viewer?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install jpeng-cycle-history-viewer」即可一键安装,无需额外配置。
cycle-history-viewer 是免费的吗?
是的,cycle-history-viewer 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
cycle-history-viewer 支持哪些平台?
cycle-history-viewer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 cycle-history-viewer?
由 jpengcheng523-netizen(@jpengcheng523-netizen)开发并维护,当前版本 v1.0.0。