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 +2 -2
- package/package.json +1 -1
- package/skills/skill-creator/SKILL.md +3 -3
- package/skills/skill-creator/scripts/init_skill.py +3 -3
- package/skills/skill-creator/scripts/package_skill.py +4 -4
- package/skills/skill-creator/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
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` 等)
|
|
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-
|
|
810
|
+
*Last updated: 2026-04-07 -- v0.33.0*
|
package/package.json
CHANGED
|
@@ -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
|
|
282
|
-
scripts/init_skill.py my-skill --path skills
|
|
283
|
-
scripts/init_skill.py my-skill --path skills
|
|
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
|
|
10
|
-
init_skill.py my-new-skill --path skills
|
|
11
|
-
init_skill.py my-api-helper --path skills
|
|
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/
|
|
10
|
-
python utils/package_skill.py skills/
|
|
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/
|
|
91
|
-
print(" python utils/package_skill.py skills/
|
|
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]
|
|
Binary file
|