Rename TAKT from "Task Agent Koordination Tool" to "TAKT Agent Koordination Topology"

This commit is contained in:
nrslib 2026-02-11 21:03:58 +09:00
parent a79196aa46
commit fa3ac7437e
6 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
## Project Overview ## Project Overview
TAKT (Task Agent Koordination Tool) is a multi-agent orchestration system for Claude Code. It enables YAML-based piece definitions that coordinate multiple AI agents through state machine transitions with rule-based routing. TAKT (TAKT Agent Koordination Topology) is a multi-agent orchestration system for Claude Code. It enables YAML-based piece definitions that coordinate multiple AI agents through state machine transitions with rule-based routing.
## Development Commands ## Development Commands

View File

@ -2,7 +2,7 @@
🇯🇵 [日本語ドキュメント](./docs/README.ja.md) 🇯🇵 [日本語ドキュメント](./docs/README.ja.md)
**T**AKT **A**gent **K**oordination **T**ool - Define how AI agents coordinate, where humans intervene, and what gets recorded — in YAML **T**AKT **A**gent **K**oordination **T**opology - Define how AI agents coordinate, where humans intervene, and what gets recorded — in YAML
TAKT runs multiple AI agents (Claude Code, Codex, OpenCode) through YAML-defined workflows. Each step — who runs, what they see, what's allowed, what happens on failure — is declared in a piece file, not left to the agent. TAKT runs multiple AI agents (Claude Code, Codex, OpenCode) through YAML-defined workflows. Each step — who runs, what they see, what's allowed, what happens on failure — is declared in a piece file, not left to the agent.

View File

@ -1,6 +1,6 @@
# TAKT # TAKT
**T**ask **A**gent **K**oordination **T**ool - AIエージェントの協調手順・人の介入ポイント・記録をYAMLで定義する **T**AKT **A**gent **K**oordination **T**opology - AIエージェントの協調手順・人の介入ポイント・記録をYAMLで定義する
TAKTは複数のAIエージェントClaude Code、Codex、OpenCodeをYAMLで定義されたワークフローに従って実行します。各ステップで誰が実行し、何を見て、何を許可し、失敗時にどうするかはピースファイルに宣言され、エージェント任せにしません。 TAKTは複数のAIエージェントClaude Code、Codex、OpenCodeをYAMLで定義されたワークフローに従って実行します。各ステップで誰が実行し、何を見て、何を許可し、失敗時にどうするかはピースファイルに宣言され、エージェント任せにしません。

View File

@ -1,7 +1,7 @@
{ {
"name": "takt", "name": "takt",
"version": "0.12.0", "version": "0.12.0",
"description": "TAKT: Task Agent Koordination Tool - AI Agent Piece Orchestration", "description": "TAKT: TAKT Agent Koordination Topology - AI Agent Piece Orchestration",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"bin": { "bin": {

View File

@ -36,7 +36,7 @@ export const program = new Command();
program program
.name('takt') .name('takt')
.description('TAKT: Task Agent Koordination Tool') .description('TAKT: TAKT Agent Koordination Topology')
.version(cliVersion); .version(cliVersion);
// --- Global options --- // --- Global options ---

View File

@ -1,5 +1,5 @@
/** /**
* TAKT - Task Agent Koordination Tool * TAKT - TAKT Agent Koordination Topology
* *
* This module exports the public API for programmatic usage. * This module exports the public API for programmatic usage.
*/ */