phasegate 0.67.0 → 0.68.0

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.
package/README.ja.md CHANGED
@@ -588,7 +588,7 @@ export class ConfigSchema { ... }
588
588
 
589
589
  | Hook | タイミング | 動作 |
590
590
  |---|---|---|
591
- | **PreToolUse** | Write/Edit/Bash 実行前 | フェーズゲート違反・保護ファイルへの書き込み・Bash 経由の書き込み(`sed -i`, `tee` 等)をブロック。`quickMode.fullModeRequiredWhen` トリガー時は Quick Mode → Full Mode へエスカレート(v0.64.0)。`.phasegate/baseline.json` 登録済みかつ未編集のファイルは grandfather として `phase-gate` をスキップ(v0.66.0) |
591
+ | **PreToolUse** | Write/Edit/Bash 実行前 | フェーズゲート違反・保護ファイルへの書き込み・Bash 経由の書き込み(`sed -i`, `tee` 等)をブロック |
592
592
  | **PostToolUse** | Write/Edit 実行後 | Biome AST ルールを自動実行、違反を即時フィードバック |
593
593
  | **Stop** | セッション終了前 | L2-L4 全チェックを実行、全グリーンでないと終了を保留 |
594
594
 
@@ -807,4 +807,4 @@ phasegate 自体の開発(内部アーキテクチャ、回帰テスト、リ
807
807
 
808
808
  ---
809
809
 
810
- *Last updated: 2026-04-22 -- v0.66.0*
810
+ *Last updated: 2026-04-07 -- v0.33.0*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phasegate",
3
- "version": "0.67.0",
3
+ "version": "0.68.0",
4
4
  "packageManager": "pnpm@10.30.1",
5
5
  "description": "Phasegate — AI-agnostic quality defense toolkit. Enforces structural integrity between design intent and code.",
6
6
  "license": "Apache-2.0",
@@ -278,9 +278,9 @@ scripts/init_skill.py <skill-name> --path <output-directory> [--resources script
278
278
  Examples:
279
279
 
280
280
  ```bash
281
- scripts/init_skill.py my-skill --path skills/public
282
- scripts/init_skill.py my-skill --path skills/public --resources scripts,references
283
- scripts/init_skill.py my-skill --path skills/public --resources scripts --examples
281
+ scripts/init_skill.py my-skill --path skills
282
+ scripts/init_skill.py my-skill --path skills --resources scripts,references
283
+ scripts/init_skill.py my-skill --path skills --resources scripts --examples
284
284
  ```
285
285
 
286
286
  The script:
@@ -6,9 +6,9 @@ Usage:
6
6
  init_skill.py <skill-name> --path <path> [--resources scripts,references,assets] [--examples]
7
7
 
8
8
  Examples:
9
- init_skill.py my-new-skill --path skills/public
10
- init_skill.py my-new-skill --path skills/public --resources scripts,references
11
- init_skill.py my-api-helper --path skills/private --resources scripts --examples
9
+ init_skill.py my-new-skill --path skills
10
+ init_skill.py my-new-skill --path skills --resources scripts,references
11
+ init_skill.py my-api-helper --path skills --resources scripts --examples
12
12
  init_skill.py custom-skill --path /custom/location
13
13
  """
14
14
 
@@ -6,8 +6,8 @@ Usage:
6
6
  python utils/package_skill.py <path/to/skill-folder> [output-directory]
7
7
 
8
8
  Example:
9
- python utils/package_skill.py skills/public/my-skill
10
- python utils/package_skill.py skills/public/my-skill ./dist
9
+ python utils/package_skill.py skills/my-skill
10
+ python utils/package_skill.py skills/my-skill ./dist
11
11
  """
12
12
 
13
13
  import sys
@@ -87,8 +87,8 @@ def main():
87
87
  if len(sys.argv) < 2:
88
88
  print("Usage: python utils/package_skill.py <path/to/skill-folder> [output-directory]")
89
89
  print("\nExample:")
90
- print(" python utils/package_skill.py skills/public/my-skill")
91
- print(" python utils/package_skill.py skills/public/my-skill ./dist")
90
+ print(" python utils/package_skill.py skills/my-skill")
91
+ print(" python utils/package_skill.py skills/my-skill ./dist")
92
92
  sys.exit(1)
93
93
 
94
94
  skill_path = sys.argv[1]