Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-alpha.1] - 2026-05-11

### Added

- ディープワーク累積を Claude Code の permissionMode 別に 3 バケット (manual / auto / bypass) で集計。watch のステータス行に `dw=Nm(M:x/A:y/B:z) | mode=...` を表示。
- MCP `cogsync://state/deepwork` リソースに `manual` / `auto` / `bypass` の内訳を追加。
- 永続化フォーマットに `deepWork.byDateBuckets` を追加(schema=1 維持、旧 `byDate` と並走)。

### Changed

- `advise()` の dailyDeepWorkCap 判定は manual バケット単独で行うように変更(auto/bypass は除外)。

## [1.0.0-alpha.0] - 2026-05-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cogsync-cli",
"version": "1.0.0-alpha.0",
"version": "1.0.0-alpha.1",
"description": "AI のリミット回復サイクル(5h ブロック)と人間の集中サイクルを同期させる CLI コーチ。MCP サーバとしても動作。",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const program = new Command();
program
.name("cogsync")
.description("AI のリミット回復サイクルと人間の集中サイクルを同期させる CLI コーチ")
.version("1.0.0-alpha.0")
.version("1.0.0-alpha.1")
.option("--config <path>", "設定ファイルパス(既定 ~/.config/cogsync/config.yaml、env COGSYNC_CONFIG でも上書き)");

program
Expand Down
2 changes: 1 addition & 1 deletion src/mcp/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { registerTools } from "./tools.ts";
import { registerPrompts } from "./prompts.ts";

const PKG_NAME = "cogsync-cli";
const PKG_VERSION = "1.0.0-alpha.0";
const PKG_VERSION = "1.0.0-alpha.1";

export async function runMcpServer(): Promise<void> {
const { config } = loadConfig();
Expand Down
Loading