Business Plan Generator
A data toolkit for business planning. Log, transform, query, and export business data — all from the command line, all stored locally.
Commands
| Command | What it does |
|---|
| INLINECODE0 | Log a new ingest entry (no args = show recent entries) |
| INLINECODE1 |
Log a transform entry |
|
bizplanner query <input> | Log a query entry |
|
bizplanner filter <input> | Log a filter entry |
|
bizplanner aggregate <input> | Log an aggregate entry |
|
bizplanner visualize <input> | Log a visualize entry |
|
bizplanner export <input> | Log an export entry (see also export with format below) |
|
bizplanner sample <input> | Log a sample entry |
|
bizplanner schema <input> | Log a schema entry |
|
bizplanner validate <input> | Log a validate entry |
|
bizplanner pipeline <input> | Log a pipeline entry |
|
bizplanner profile <input> | Log a profile entry |
|
bizplanner stats | Show summary statistics across all log files |
|
bizplanner export <fmt> | Export all data to json, csv, or txt format |
|
bizplanner search <term> | Search all entries for a term (case-insensitive) |
|
bizplanner recent | Show the 20 most recent activity log entries |
|
bizplanner status | Health check — version, entry count, disk usage |
|
bizplanner help | Show usage and available commands |
|
bizplanner version | Print version string |
Each logging command (ingest, transform, query, etc.) accepts free-form text. Called without arguments, it shows the 20 most recent entries for that category.
Data Storage
All data is stored locally in ~/.local/share/bizplanner/. Each command category writes to its own .log file, and all actions are recorded in history.log with timestamps.
Requirements
When to Use
- - Logging business planning data points from the command line
- Tracking data transformations and queries over time
- Exporting accumulated entries to JSON, CSV, or plain text for reports
- Searching across all logged entries to find specific data
- Checking health and statistics of your local business data store
Examples
CODEBLOCK0
Powered by BytesAgain | bytesagain.com | hello@bytesagain.com
技能名称:商业计划生成器
详细描述:
商业计划生成器
一个用于商业规划的数据工具包。记录、转换、查询和导出商业数据——全部通过命令行完成,全部存储在本地。
命令
| 命令 | 功能说明 |
|---|
| bizplanner ingest <输入> | 记录一条新的数据录入(无参数时显示最近录入条目) |
| bizplanner transform <输入> |
记录一条数据转换条目 |
| bizplanner query <输入> | 记录一条查询条目 |
| bizplanner filter <输入> | 记录一条筛选条目 |
| bizplanner aggregate <输入> | 记录一条聚合条目 |
| bizplanner visualize <输入> | 记录一条可视化条目 |
| bizplanner export <输入> | 记录一条导出条目(另见下方带格式的导出命令) |
| bizplanner sample <输入> | 记录一条采样条目 |
| bizplanner schema <输入> | 记录一条模式条目 |
| bizplanner validate <输入> | 记录一条验证条目 |
| bizplanner pipeline <输入> | 记录一条流水线条目 |
| bizplanner profile <输入> | 记录一条分析条目 |
| bizplanner stats | 显示所有日志文件的汇总统计信息 |
| bizplanner export <格式> | 将所有数据导出为json、csv或txt格式 |
| bizplanner search <关键词> | 在所有条目中搜索关键词(不区分大小写) |
| bizplanner recent | 显示最近20条活动日志条目 |
| bizplanner status | 健康检查——版本、条目数量、磁盘使用情况 |
| bizplanner help | 显示使用方法和可用命令 |
| bizplanner version | 打印版本号 |
每个日志记录命令(ingest、transform、query等)都接受自由格式文本。无参数调用时,显示该类别最近20条条目。
数据存储
所有数据本地存储在~/.local/share/bizplanner/目录下。每个命令类别写入各自的.log文件,所有操作均记录在history.log中并带有时间戳。
系统要求
使用场景
- - 通过命令行记录商业规划数据点
- 追踪随时间变化的数据转换和查询
- 将累积条目导出为JSON、CSV或纯文本格式用于报告
- 跨所有日志条目搜索以查找特定数据
- 检查本地商业数据存储的健康状况和统计信息
示例
bash
记录一个新的数据点
bizplanner ingest 第一季度收入:来自SaaS订阅的45万美元
在所有日志中搜索关键词
bizplanner search 收入
将所有数据导出为CSV格式
bizplanner export csv
查看数据量
bizplanner stats
查看最近活动
bizplanner recent
由BytesAgain提供 | bytesagain.com | hello@bytesagain.com