@sk8metal/michi-cli 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +37 -0
  3. package/dist/scripts/config/config-schema.d.ts +109 -600
  4. package/dist/scripts/config/config-schema.d.ts.map +1 -1
  5. package/dist/scripts/config/config-schema.js.map +1 -1
  6. package/dist/scripts/config-interactive.js +3 -3
  7. package/dist/scripts/confluence-sync.js +3 -3
  8. package/dist/scripts/create-project.js.map +1 -1
  9. package/dist/scripts/jira-sync.js +5 -5
  10. package/dist/scripts/markdown-to-confluence.js +1 -1
  11. package/dist/scripts/markdown-to-confluence.js.map +1 -1
  12. package/dist/scripts/multi-project-estimate.js +1 -1
  13. package/dist/scripts/phase-runner.js.map +1 -1
  14. package/dist/scripts/pre-flight-check.js +1 -1
  15. package/dist/scripts/setup-existing-project.js.map +1 -1
  16. package/dist/scripts/utils/config-loader.js +1 -1
  17. package/dist/scripts/utils/config-loader.js.map +1 -1
  18. package/dist/scripts/utils/config-validator.d.ts.map +1 -1
  19. package/dist/scripts/utils/config-validator.js +46 -46
  20. package/dist/scripts/utils/config-validator.js.map +1 -1
  21. package/dist/scripts/utils/confluence-hierarchy.d.ts.map +1 -1
  22. package/dist/scripts/utils/confluence-hierarchy.js +9 -8
  23. package/dist/scripts/utils/confluence-hierarchy.js.map +1 -1
  24. package/dist/scripts/validate-phase.js.map +1 -1
  25. package/dist/scripts/workflow-orchestrator.js.map +1 -1
  26. package/dist/src/cli.js +0 -0
  27. package/dist/vitest.config.d.ts +3 -0
  28. package/dist/vitest.config.d.ts.map +1 -0
  29. package/dist/vitest.config.js +33 -0
  30. package/dist/vitest.config.js.map +1 -0
  31. package/docs/release.md +365 -0
  32. package/package.json +16 -12
  33. package/scripts/config/config-schema.ts +5 -5
  34. package/scripts/config-interactive.ts +3 -3
  35. package/scripts/confluence-sync.ts +3 -3
  36. package/scripts/create-project.ts +17 -17
  37. package/scripts/jira-sync.ts +5 -5
  38. package/scripts/markdown-to-confluence.ts +1 -1
  39. package/scripts/multi-project-estimate.ts +1 -1
  40. package/scripts/phase-runner.ts +8 -8
  41. package/scripts/pre-flight-check.ts +1 -1
  42. package/scripts/setup-existing-project.ts +9 -9
  43. package/scripts/utils/config-loader.ts +1 -1
  44. package/scripts/utils/config-validator.ts +47 -46
  45. package/scripts/utils/confluence-hierarchy.ts +52 -51
  46. package/scripts/validate-phase.ts +11 -11
  47. package/scripts/workflow-orchestrator.ts +27 -27
package/CHANGELOG.md CHANGED
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.0.4] - 2025-11-13
9
+
10
+ ### Changed
11
+ - Vitest 4への移行(1.x → 4.x)
12
+ - ESLint 9への移行(8.x → 9.x、Flat Config対応)
13
+ - Zod 4への移行(3.x → 4.x)
14
+
15
+ ### Dependencies
16
+ - Updated `vitest` from `^1.6.1` to `^4.0.8`
17
+ - Updated `@vitest/coverage-v8` from `^1.6.1` to `^4.0.8`
18
+ - Updated `eslint` from `^8.57.1` to `^9.39.1`
19
+ - Updated `@typescript-eslint/eslint-plugin` from `^6.21.0` to `^8.46.4`
20
+ - Updated `@typescript-eslint/parser` from `^6.21.0` to `^8.46.4`
21
+ - Updated `typescript-eslint` from `^6.21.0` to `^8.46.4`
22
+ - Updated `zod` from `^3.25.76` to `^4.1.12`
23
+ - Updated `@octokit/rest` from `^20.1.2` to `^22.0.1`
24
+ - Updated `googleapis` from `^126.0.1` to `^166.0.0`
25
+ - Updated `@types/node` from `^20.19.24` to `^24.10.1`
26
+ - Updated `@types/markdown-it` from `^13.0.9` to `^14.1.2`
27
+
28
+ ## [0.0.3] - 2025-11-12
29
+
30
+ ### Added
31
+ - CI/CDパイプラインの整備
32
+ - テストカバレッジレポートの自動生成
33
+
8
34
  ## [0.0.2] - 2025-11-12
9
35
 
10
36
  ### Changed
package/README.md CHANGED
@@ -3,6 +3,10 @@
3
3
 
4
4
  AI駆動開発ワークフロー自動化プラットフォーム
5
5
 
6
+ [![CI](https://github.com/sk8metalme/michi/actions/workflows/ci.yml/badge.svg)](https://github.com/sk8metalme/michi/actions/workflows/ci.yml)
7
+ [![Security](https://github.com/sk8metalme/michi/actions/workflows/security.yml/badge.svg)](https://github.com/sk8metalme/michi/actions/workflows/security.yml)
8
+ [![codecov](https://codecov.io/gh/sk8metalme/michi/branch/main/graph/badge.svg)](https://codecov.io/gh/sk8metalme/michi)
9
+
6
10
  ## 概要
7
11
 
8
12
  Michiは、企業の開発フロー全体(要件定義→設計→タスク分割→実装→テスト→リリース)をAIで自動化するプラットフォームです。
@@ -297,6 +301,39 @@ npm run create-project -- \
297
301
  - [ワークフローガイド](./docs/workflow.md) - AI開発フロー
298
302
  - [マルチプロジェクト管理](./docs/multi-project.md) - 複数プロジェクト管理
299
303
  - [テスト・検証](./docs/testing.md) - E2Eテスト、フィードバック
304
+ - [リリース手順](./docs/release.md) - バージョンアップ・NPM公開手順
305
+ - [CI/CD整備計画](./docs/cicd-plan.md) - CI/CDパイプラインの計画と実装状況
306
+
307
+ ## CI/CD
308
+
309
+ このプロジェクトでは、GitHub Actionsを使用してCI/CDパイプラインを構築しています。
310
+
311
+ ### 自動実行されるチェック
312
+
313
+ - **テスト**: プッシュ・PR時に自動テスト実行(Node.js 20.x, 22.x)
314
+ - **リント**: ESLintによるコード品質チェック
315
+ - **型チェック**: TypeScriptの型チェック
316
+ - **セキュリティスキャン**: 週1回の依存関係脆弱性スキャン
317
+ - **カバレッジレポート**: テストカバレッジの自動生成・アップロード
318
+
319
+ ### リリース
320
+
321
+ - **自動リリース**: `v*`タグ作成時に自動NPMパッケージ公開
322
+ - **Dependabot**: 依存関係の自動更新プルリクエスト
323
+
324
+ 詳細は [CI/CD整備計画](./docs/cicd-plan.md) を参照してください。
325
+
326
+ ### NPM_TOKEN設定
327
+
328
+ リリース自動化を有効にするには、NPM_TOKENの設定が必要です。
329
+
330
+ **設定手順**: [NPM_TOKEN設定ガイド](./docs/npm-token-setup.md)
331
+
332
+ **設定内容**:
333
+ 1. NPMアカウントでAutomation Tokenを生成
334
+ 2. GitHub Secretsに`NPM_TOKEN`を追加
335
+
336
+ 設定完了後、`v*`タグを作成すると自動的にNPMパッケージが公開されます。
300
337
 
301
338
  ## 技術スタック
302
339