经 AI Skill Hub 精选评估,AI工作流 获评「推荐使用」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:go install(推荐) go install github.com/kenn-io/kata@latest # 方式二:从源码编译 git clone https://github.com/kenn-io/kata cd kata go build -o kata . # 方式三:下载预编译二进制 # 访问 Releases 页面下载对应平台二进制文件 # https://github.com/kenn-io/kata/releases
# 查看帮助 kata --help # 基本运行 kata [options] <input> # 详细使用说明请查阅文档 # https://github.com/kenn-io/kata
# kata 配置说明 # 查看配置选项 kata --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export KATA_CONFIG="/path/to/config.yml"
Local-first issue tracking for humans and coding agents.
kata gives agents a structured place to record tasks, decisions, links, comments, and state changes without turning GitHub Issues, markdown plans, or chat transcripts into the source of truth.
The CLI is built for agents and automation: stable commands, JSON output, and predictable failure modes. The TUI is built for people: browse, triage, edit, and supervise agent-written work without reading raw JSON. Both talk to the same local daemon and SQLite database.
Status: early public preview. The CLI, daemon, and TUI are usable, but command contracts and UI details may still change before a stable release.
kata is a single Go binary with no runtime dependencies and builds on macOS, Linux, and Windows. Pre-built release binaries are not published yet; install from source using one of the options below. All paths require Go 1.26 or later (<https://go.dev/dl/>).
go install go.kenn.io/kata/cmd/kata@latest
Go places kata in $(go env GOBIN), falling back to $(go env GOPATH)/bin (typically ~/go/bin on Unix, %USERPROFILE%\go\bin on Windows). Add that directory to your PATH.
make install # installs to ~/.local/bin
make install GOBIN=/usr/local/bin # or set GOBIN to install elsewhere
Add the install directory to your PATH if it isn't already. GOBIN from the environment is also honored (export GOBIN=/opt/bin && make install).
PowerShell or cmd.exe:
```powershell go build -o kata.exe ./cmd/kata
go install go.kenn.io/kata/cmd/kata@latest # or see Install for other options
cd your-repo
kata init # bind this workspace to a kata project
kata create "fix login race" # returns the issue's short_id, e.g. abc4
kata list # list open issues
kata show abc4 # inspect by short_id
kata close abc4 --done --message "Fixed the issue and verified the relevant tests pass." --commit <sha>
kata tui # browse and triage interactively
See Install for go install, build-from-source, and Windows instructions; see Working with kata for a longer walkthrough.
This is the short version to give any coding agent, regardless of whether that agent supports skills, memories, or custom instructions. It is also shipped with the CLI:
kata quickstart
kata agent-instructions # alias
Session setup:
- Run from the project workspace, or pass --workspace <path>. - Set KATA_AUTHOR once at session start. - Default to --agent for ordinary kata reads and mutations in agent logs. - Use --json only when your script needs complete structured data, for example when piping into jq.
Per-task guidelines:
- Never create a project implicitly. If the workspace is not initialized, report that kata init is needed. - Search before creating; pass an idempotency key when you do create. - Prefer updating existing issues over opening duplicates. - Close only when the work is actually complete. - Do not run delete or purge unless the user explicitly asks for that exact destructive action and issue ref.
Use relationships deliberately. The link types mean:
| Type | Meaning |
|---|---|
parent | This issue is part of a larger issue. |
blocks | The first issue must be resolved before the second can proceed. |
related | Useful context, but not ordering. |
Example session (using abc4 as a placeholder for the issue's actual short_id, which kata create --agent and kata search --agent both return):
```sh
Useful environment variables:
- KATA_HOME: data directory. Defaults to ~/.kata. - KATA_DB: explicit SQLite database path. - KATA_AUTHOR: default actor for mutations. - KATA_HTTP_TIMEOUT: per-request CLI timeout for non-streaming daemon calls (any time.ParseDuration string, e.g. 30s, 2m). Defaults to 5s. Bump this for bulk imports where create requests can exceed the default. - KATA_SERVER: opt-in remote daemon URL (e.g. http://100.64.0.5:7777). When set, the client skips local discovery and auto-start entirely. See "Remote daemon" below. - XDG_RUNTIME_DIR: runtime socket parent on Unix.
The workspace binding file is intentionally secret-free:
version = 1
[project]
name = "product"
Commit .kata.toml when multiple agents, clones, or worktrees should resolve to the same kata project.
Today kata is local-first:
Multiple checkouts or repositories can share one kata project when they use the same .kata.toml project name and run kata init in each checkout. That shares the issue ledger — short_ids, labels, links, and events — across those workspaces in the same local database.
If a repository rename accidentally creates a second project, merge the old source into the surviving target, for example:
kata projects merge old-repo new-repo --rename-target new-repo
Future shared mode should be a distinct deployment:
The local daemon should not be exposed directly to a LAN or public network.
高质量的AI工作流项目,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:AI工作流 的核心功能完整,质量良好。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | kata |
| 原始描述 | 开源AI工作流:Local-first issue tracking for AI-assisted software work, with an agent-friendly。⭐229 · Go |
| Topics | AI工作流Go |
| GitHub | https://github.com/kenn-io/kata |
| License | MIT |
| 语言 | Go |
收录时间:2026-05-28 · 更新时间:2026-05-28 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端