vibe-coding-master 0.7.47 → 0.7.49

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.
@@ -4,7 +4,7 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>VibeCodingMaster</title>
7
- <script type="module" crossorigin src="/assets/index-nAV6toi8.js"></script>
7
+ <script type="module" crossorigin src="/assets/index-DLsIPTvK.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="/assets/index-DDmygnV6.css">
9
9
  </head>
10
10
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-coding-master",
3
- "version": "0.7.47",
3
+ "version": "0.7.49",
4
4
  "description": "Local GUI session cockpit for Claude Code role sessions.",
5
5
  "type": "module",
6
6
  "files": [
@@ -10,40 +10,11 @@ import urllib.error
10
10
  import urllib.parse
11
11
  import urllib.request
12
12
 
13
- KINDS = (
14
- "architecture-brief",
15
- "architecture-evidence",
16
- "planning-progress",
17
- "architecture-plan",
18
- "known-issues",
19
- "coder-completion",
20
- "architect-debug",
21
- "architecture-diagnosis",
22
- "test-report",
23
- "docs-update-report",
24
- "docs-sync-report",
25
- "workflow-progress",
26
- "final-acceptance",
27
- "route-message",
28
- "coder-worker-report",
29
- "gate-review-report",
30
- "memory-proposal",
31
- "harness-feedback",
32
- )
33
- DYNAMIC_KINDS = {
34
- "route-message",
35
- "coder-worker-report",
36
- "gate-review-report",
37
- "memory-proposal",
38
- "harness-feedback",
39
- }
40
-
41
-
42
13
  def parse_args() -> argparse.Namespace:
43
14
  parser = argparse.ArgumentParser(
44
15
  description="Validate and atomically write a VCM-managed artifact."
45
16
  )
46
- parser.add_argument("kind", choices=KINDS)
17
+ parser.add_argument("kind", help="VCM-managed artifact kind.")
47
18
  parser.add_argument("--file", required=True, help="Candidate Markdown file.")
48
19
  parser.add_argument("--mode", choices=("draft", "final"), default="final")
49
20
  parser.add_argument(
@@ -89,10 +60,6 @@ def error_text(raw: str) -> str:
89
60
 
90
61
  def main() -> int:
91
62
  args = parse_args()
92
- if args.kind in DYNAMIC_KINDS and not args.path:
93
- fail(f"--path is required for {args.kind}.")
94
- if args.kind not in DYNAMIC_KINDS and args.path:
95
- fail(f"--path is not allowed for fixed artifact kind {args.kind}.")
96
63
 
97
64
  candidate = Path(args.file).expanduser()
98
65
  if not candidate.is_file():