Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

outlineoutline 文档

Agent Skill

outline 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,932

周安装

418

GitHub Stars

公开资料未说明

下载量

3,478
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:outline(outline 文档)
来源仓库:https://github.com/ckchzh/outline
安装命令:
openclaw skills install outline
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install outline

简介

使用目录、章节规划和层次结构管理生成文档大纲。在构建文档、规划章节、创建大纲时使用。

SKILL.md

name
outline
version
2.0.0
author
BytesAgain
homepage
https://bytesagain.com
source
https://github.com/bytesagain/ai-skills
license
MIT-0
tags
[outline, tool, utility]
description
Generate document outlines with TOC, chapter planning, and hierarchy management. Use when structuring documents, planning chapters, creating outlines.

Outline

A productivity toolkit for capturing, planning, tracking, and reviewing tasks and ideas. Each command category maintains its own timestamped log file, so you can organize entries by purpose — plans, reviews, reminders, tags, timelines, and more. Includes built-in statistics, multi-format export, full-text search, and weekly review support.

All operations are logged with timestamps and stored locally in flat files for easy inspection and portability.

Commands

CommandDescription
outline add <text>Add a general entry (or show recent entries with no args)
outline plan <text>Record a plan or goal
outline track <text>Track progress on an item
outline review <text>Log a review or reflection
outline streak <text>Record a streak or habit check-in
outline remind <text>Set a reminder note
outline prioritize <text>Log a priority decision
outline archive <text>Archive an item for later reference
outline tag <text>Tag or categorize an entry
outline timeline <text>Record a timeline event or milestone
outline report <text>Log a report or summary
outline weekly-review <text>Perform or record a weekly review
outline statsShow summary statistics across all categories
outline export <fmt>Export all data in json, csv, or txt format
outline search <term>Full-text search across all log files
outline recentShow the 20 most recent activity entries
outline statusHealth check — version, data dir, entry counts, disk usage
outline helpShow the built-in help message
outline versionPrint the current version

How Entry Commands Work

Every entry command (add, plan, track, review, streak, remind, prioritize, archive, tag, timeline, report, weekly-review) follows the same pattern:

  • With arguments: Appends a timestamped entry (YYYY-MM-DD HH:MM|<text>) to the corresponding .log file and shows the new total count
  • Without arguments: Shows the 20 most recent entries from that category's log file

Data Storage

All data is stored in ~/.local/share/outline/ by default.

Files created in the data directory:

  • add.log, plan.log, track.log, etc. — One log file per command category, each containing timestamped entries in YYYY-MM-DD HH:MM|<text> format
  • history.log — Audit trail of every command executed with timestamps
  • export.json / export.csv / export.txt — Generated by the export command

Export Formats

  • json — Array of objects with type, time, and value fields
  • csv — Header row (type,time,value) followed by data rows
  • txt — Human-readable sections grouped by category

Requirements

  • bash 4.0 or later (uses set -euo pipefail, local variables)
  • grep — used by the search command for case-insensitive matching
  • Standard POSIX utilitiesdate, cat, echo, mkdir, wc, du, head, tail, basename
  • No external API keys or network access required
  • No Python or Node.js dependencies

When to Use

  1. Daily task capture — Quickly jot down tasks, ideas, or observations throughout the day using add or plan, then review with recent
  2. Habit tracking and streaks — Use streak to check in on daily habits and stats to see your consistency over time
  3. Weekly reviews and retrospectives — Use weekly-review to log reflections at the end of each week, then search to find patterns
  4. Project timeline management — Use timeline to record milestones and report to log progress summaries for stakeholders
  5. Exporting data for analysis — Use export json to pipe structured data into jq, dashboards, or spreadsheets for deeper analysis

Examples

# Add a task and a plan
outline add "Set up CI pipeline for new repo"
#=> [Outline] add: Set up CI pipeline for new repo
#=> Saved. Total add entries: 1

outline plan "Q2 roadmap: launch v2.0 by June"
#=> [Outline] plan: Q2 roadmap: launch v2.0 by June
#=> Saved. Total plan entries: 1

# Track progress and tag it
outline track "CI pipeline: tests passing, deploy step WIP"
outline tag "ci-pipeline: infrastructure"

# Set a reminder
outline remind "Team standup at 10am tomorrow"
#=> [Outline] remind: Team standup at 10am tomorrow
#=> Saved. Total remind entries: 1

# View statistics across all categories
outline stats
#=> === Outline Stats ===
#=>   add: 1 entries
#=>   plan: 1 entries
#=>   ...
#=>   Total: 5 entries
#=>   Data size: 4.0K

# Export everything as JSON
outline export json
#=> Exported to /home/user/.local/share/outline/export.json (245 bytes)

# Search across all logs
outline search "pipeline"
#=> Searching for: pipeline
#=>   --- add ---
#=>     2025-03-18 14:30|Set up CI pipeline for new repo

Configuration

The data directory is hardcoded to ~/.local/share/outline/. To use a custom location, modify the DATA_DIR variable in the script.

How It Works

  1. On every invocation, the tool ensures the data directory exists (mkdir -p)
  2. The first argument selects the command via a case dispatch
  3. Entry commands append a pipe-delimited line (timestamp|text) to their category-specific log file
  4. Every command also appends to history.log for auditing
  5. stats iterates over all .log files to produce aggregate counts
  6. export reads all .log files and writes a combined output in the chosen format
  7. All output goes to stdout for easy piping and redirection

Powered by BytesAgain | bytesagain.com | hello@bytesagain.com

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.64%
按下载量换算3,013

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills