Install
$ agentstack add skill-serejaris-kimi-skills-chrono-flow ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Timeline Designer
根据 JSON 配置数据生成精美的交互式时间线 HTML 页面,支持三种布局模式:
- 垂直布局(vertical) — 经典纵向时间线,事件卡片交替分布在轴线两侧
- 水平布局(horizontal) — 横向滚动时间线,适合展示较少事件
- 双侧布局(dual-side) — 根据
side字段将事件分配到左右两侧,适合对比展示
所有布局均支持:
- 点击展开/收起事件详情
- 移动端自适应(响应式设计)
- 自定义主题色、图标、分类标签
- 纯静态 HTML,零依赖,可直接用浏览器打开
使用方式
基础用法:从 JSON 配置生成
python3 scripts/generate_timeline.py --config timeline_data.json --output timeline.html
从标准输入读取 JSON
cat timeline_data.json | python3 scripts/generate_timeline.py --stdin --output timeline.html
指定布局模式(覆盖配置文件中的设置)
python3 scripts/generate_timeline.py --config data.json --layout horizontal --output timeline.html
JSON 配置格式
{
"title": "项目里程碑",
"layout": "vertical",
"theme": {
"primaryColor": "#2563eb",
"secondaryColor": "#7c3aed",
"backgroundColor": "#ffffff",
"textColor": "#1f2937",
"lineColor": "#d1d5db",
"fontFamily": "system-ui, -apple-system, sans-serif"
},
"events": [
{
"date": "2024-01-15",
"title": "项目启动",
"summary": "完成立项审批,组建核心团队",
"details": "详细说明文字,点击卡片后展开显示...",
"icon": "🚀",
"category": "里程碑",
"color": "#10b981",
"side": "left"
}
]
}
参数说明
| 参数 | 说明 | |------|------| | --config, -c | JSON 配置文件路径(与 --stdin 二选一) | | --stdin | 从标准输入读取 JSON | | --output, -o | 输出 HTML 文件路径(默认输出到 stdout) | | --layout, -l | 覆盖布局模式:vertical、horizontal、dual-side | | --title, -t | 覆盖时间线标题 |
字段说明
| 字段 | 必填 | 说明 | |------|------|------| | date | ✅ | 时间标签,格式不限(如 2024-01、Q1 2024、第一阶段) | | title | ✅ | 事件标题 | | summary | ❌ | 简短描述,始终显示在卡片上 | | details | ❌ | 详细内容,点击后展开显示 | | icon | ❌ | emoji 或单字符图标(默认 ●) | | category | ❌ | 分类标签,显示在卡片上 | | color | ❌ | 事件节点颜色(覆盖主题色) | | side | ❌ | 仅 dual-side 布局有效:left 或 right |
适用场景
- 项目里程碑展示
- 产品发布历史
- 公司发展历程
- 个人简历时间线
- 教学课程大纲
- 任何需要按时间顺序展示信息的场景
依赖
- Python 3.6+(仅使用标准库,无需额外安装)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: serejaris
- Source: serejaris/kimi-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.