its-magic 0.1.3-1 → 0.1.3-2
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/installer.ps1 +8 -0
- package/installer.py +8 -0
- package/installer.sh +1 -0
- package/package.json +1 -1
- package/template/.cursor/commands/auto.md +90 -0
- package/template/.cursor/commands/execute.md +26 -0
- package/template/.cursor/commands/refresh-context.md +32 -0
- package/template/.cursor/commands/sovereign-critic.md +104 -0
- package/template/.cursor/rules/sovereign-role-manifest.mdc.example +27 -0
- package/template/.cursor/scratchpad.md +141 -0
- package/template/.cursor/sovereign-role-manifest.yaml.example +53 -0
- package/template/decisions/DEC-0104.md +279 -0
- package/template/decisions/DEC-0105.md +231 -0
- package/template/decisions/DEC-0107.md +246 -0
- package/template/docs/engineering/architecture.md +78 -0
- package/template/docs/engineering/auto-orchestration-reference.md +7 -0
- package/template/docs/engineering/context/installer-owned-paths.manifest +8 -0
- package/template/docs/engineering/reason_codes.md +411 -0
- package/template/docs/engineering/runbook.md +922 -0
- package/template/docs/engineering/sovereign-memory/.gitkeep +0 -0
- package/template/docs/engineering/sovereign-memory/retrospectives/.gitkeep +0 -0
- package/template/handoffs/sovereign_decisions/.gitkeep +0 -0
- package/template/handoffs/sovereign_deferrals/.gitkeep +0 -0
- package/template/handoffs/sovereign_role_reviews.jsonl +0 -0
- package/template/scripts/__pycache__/decision_ledger_lib.cpython-312.pyc +0 -0
- package/template/scripts/check_intake_template_parity.py +119 -0
- package/template/scripts/decision_ledger_lib.py +732 -0
- package/template/scripts/ledger_validate.py +153 -0
- package/template/scripts/parallel_dev_arbiter.py +923 -0
- package/template/scripts/release_trigger_adapters.py +843 -0
- package/template/scripts/self_healing_deploy_lib.py +463 -0
- package/template/scripts/self_healing_deploy_validate.py +78 -0
- package/template/scripts/sovereign_convergence_lib.py +994 -0
- package/template/scripts/sovereign_convergence_validate.py +206 -0
- package/template/scripts/sovereign_critic_lib.py +629 -0
- package/template/scripts/sovereign_critic_validate.py +131 -0
- package/template/scripts/sovereign_loop_lib.py +828 -0
- package/template/scripts/sovereign_loop_validate.py +122 -0
- package/template/scripts/sovereign_memory_lib.py +869 -0
- package/template/scripts/sovereign_memory_validate.py +153 -0
- package/template/scripts/sovereign_role_manifest_lib.py +547 -0
- package/template/scripts/sovereign_role_manifest_validate.py +105 -0
- package/template/tests/us0108_contract_test.py +207 -0
- package/template/tests/us0109_contract_test.py +209 -0
- package/template/tests/us0109_us0110_compose_test.py +34 -0
- package/template/tests/us0111_contract_test.py +345 -0
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
@@ -13,6 +13,9 @@ Scoped modes (DEC-0073 §10 / US-0090):
|
|
|
13
13
|
--scope=us-0096 DEC-0082 delivery modes surfaces (US-0096).
|
|
14
14
|
--scope=project-readme DEC-0083 project README bootstrap surfaces (US-0097).
|
|
15
15
|
--scope=dev-environment DEC-0084 dev auto-launch profile surfaces (US-0098).
|
|
16
|
+
--scope=sovereign-parallel-dev DEC-0108 parallel instance arbitrage surfaces (US-0108).
|
|
17
|
+
--scope=sovereign-self-healing-deploy DEC-0109 self-healing deploy loop surfaces (US-0109).
|
|
18
|
+
--scope=release-trigger-adapter DEC-0111 release trigger adapter surfaces (US-0111).
|
|
16
19
|
--scope=all union of all tables.
|
|
17
20
|
"""
|
|
18
21
|
|
|
@@ -297,6 +300,115 @@ DOWNSTREAM_CI_GUARD_PAIRS: tuple[tuple[str, str], ...] = (
|
|
|
297
300
|
),
|
|
298
301
|
)
|
|
299
302
|
|
|
303
|
+
SOVEREIGN_ROLE_MANIFEST_PAIRS: tuple[tuple[str, str], ...] = (
|
|
304
|
+
(
|
|
305
|
+
".cursor/sovereign-role-manifest.yaml",
|
|
306
|
+
"template/.cursor/sovereign-role-manifest.yaml.example",
|
|
307
|
+
),
|
|
308
|
+
(
|
|
309
|
+
".cursor/scratchpad.md",
|
|
310
|
+
"template/.cursor/scratchpad.md",
|
|
311
|
+
),
|
|
312
|
+
(
|
|
313
|
+
"scripts/sovereign_role_manifest_validate.py",
|
|
314
|
+
"template/scripts/sovereign_role_manifest_validate.py",
|
|
315
|
+
),
|
|
316
|
+
(
|
|
317
|
+
"scripts/sovereign_role_manifest_lib.py",
|
|
318
|
+
"template/scripts/sovereign_role_manifest_lib.py",
|
|
319
|
+
),
|
|
320
|
+
(
|
|
321
|
+
"docs/engineering/runbook.md",
|
|
322
|
+
"template/docs/engineering/runbook.md",
|
|
323
|
+
),
|
|
324
|
+
(
|
|
325
|
+
"docs/engineering/reason_codes.md",
|
|
326
|
+
"template/docs/engineering/reason_codes.md",
|
|
327
|
+
),
|
|
328
|
+
(
|
|
329
|
+
"handoffs/sovereign_role_reviews.jsonl",
|
|
330
|
+
"template/handoffs/sovereign_role_reviews.jsonl",
|
|
331
|
+
),
|
|
332
|
+
)
|
|
333
|
+
|
|
334
|
+
SOVEREIGN_PARALLEL_DEV_PAIRS: tuple[tuple[str, str], ...] = (
|
|
335
|
+
(
|
|
336
|
+
".cursor/scratchpad.md",
|
|
337
|
+
"template/.cursor/scratchpad.md",
|
|
338
|
+
),
|
|
339
|
+
(
|
|
340
|
+
"scripts/parallel_dev_arbiter.py",
|
|
341
|
+
"template/scripts/parallel_dev_arbiter.py",
|
|
342
|
+
),
|
|
343
|
+
(
|
|
344
|
+
"tests/us0108_contract_test.py",
|
|
345
|
+
"template/tests/us0108_contract_test.py",
|
|
346
|
+
),
|
|
347
|
+
(
|
|
348
|
+
"docs/engineering/runbook.md",
|
|
349
|
+
"template/docs/engineering/runbook.md",
|
|
350
|
+
),
|
|
351
|
+
(
|
|
352
|
+
"docs/engineering/reason_codes.md",
|
|
353
|
+
"template/docs/engineering/reason_codes.md",
|
|
354
|
+
),
|
|
355
|
+
(
|
|
356
|
+
"scripts/check_intake_template_parity.py",
|
|
357
|
+
"template/scripts/check_intake_template_parity.py",
|
|
358
|
+
),
|
|
359
|
+
)
|
|
360
|
+
|
|
361
|
+
SOVEREIGN_SELF_HEALING_DEPLOY_PAIRS: tuple[tuple[str, str], ...] = (
|
|
362
|
+
(
|
|
363
|
+
".cursor/scratchpad.md",
|
|
364
|
+
"template/.cursor/scratchpad.md",
|
|
365
|
+
),
|
|
366
|
+
(
|
|
367
|
+
"scripts/self_healing_deploy_lib.py",
|
|
368
|
+
"template/scripts/self_healing_deploy_lib.py",
|
|
369
|
+
),
|
|
370
|
+
(
|
|
371
|
+
"scripts/self_healing_deploy_validate.py",
|
|
372
|
+
"template/scripts/self_healing_deploy_validate.py",
|
|
373
|
+
),
|
|
374
|
+
(
|
|
375
|
+
"tests/us0109_contract_test.py",
|
|
376
|
+
"template/tests/us0109_contract_test.py",
|
|
377
|
+
),
|
|
378
|
+
(
|
|
379
|
+
"docs/engineering/runbook.md",
|
|
380
|
+
"template/docs/engineering/runbook.md",
|
|
381
|
+
),
|
|
382
|
+
(
|
|
383
|
+
"docs/engineering/reason_codes.md",
|
|
384
|
+
"template/docs/engineering/reason_codes.md",
|
|
385
|
+
),
|
|
386
|
+
)
|
|
387
|
+
|
|
388
|
+
# US-0111 release trigger adapter parity pairs
|
|
389
|
+
RELEASE_TRIGGER_ADAPTER_PAIRS: tuple[tuple[str, str], ...] = (
|
|
390
|
+
(
|
|
391
|
+
"scripts/release_trigger_adapters.py",
|
|
392
|
+
"template/scripts/release_trigger_adapters.py",
|
|
393
|
+
),
|
|
394
|
+
(
|
|
395
|
+
"tests/us0111_contract_test.py",
|
|
396
|
+
"template/tests/us0111_contract_test.py",
|
|
397
|
+
),
|
|
398
|
+
(
|
|
399
|
+
"docs/engineering/runbook.md",
|
|
400
|
+
"template/docs/engineering/runbook.md",
|
|
401
|
+
),
|
|
402
|
+
(
|
|
403
|
+
"docs/engineering/reason_codes.md",
|
|
404
|
+
"template/docs/engineering/reason_codes.md",
|
|
405
|
+
),
|
|
406
|
+
(
|
|
407
|
+
"scripts/check_intake_template_parity.py",
|
|
408
|
+
"template/scripts/check_intake_template_parity.py",
|
|
409
|
+
),
|
|
410
|
+
)
|
|
411
|
+
|
|
300
412
|
SCOPES: dict[str, tuple[tuple[str, str], ...]] = {
|
|
301
413
|
"intake": INTAKE_TEMPLATE_PAIRS,
|
|
302
414
|
"caveman-compress": CAVEMAN_COMPRESS_PAIRS,
|
|
@@ -312,6 +424,10 @@ SCOPES: dict[str, tuple[tuple[str, str], ...]] = {
|
|
|
312
424
|
"release-changelog": RELEASE_CHANGELOG_PAIRS,
|
|
313
425
|
"model-tier": MODEL_TIER_PAIRS,
|
|
314
426
|
"model-tier-overrides": MODEL_TIER_OVERRIDES_PAIRS,
|
|
427
|
+
"sovereign-role-manifest": SOVEREIGN_ROLE_MANIFEST_PAIRS,
|
|
428
|
+
"sovereign-parallel-dev": SOVEREIGN_PARALLEL_DEV_PAIRS,
|
|
429
|
+
"sovereign-self-healing-deploy": SOVEREIGN_SELF_HEALING_DEPLOY_PAIRS,
|
|
430
|
+
"release-trigger-adapter": RELEASE_TRIGGER_ADAPTER_PAIRS,
|
|
315
431
|
"all": (
|
|
316
432
|
INTAKE_TEMPLATE_PAIRS
|
|
317
433
|
+ CAVEMAN_COMPRESS_PAIRS
|
|
@@ -327,6 +443,9 @@ SCOPES: dict[str, tuple[tuple[str, str], ...]] = {
|
|
|
327
443
|
+ RELEASE_CHANGELOG_PAIRS
|
|
328
444
|
+ MODEL_TIER_PAIRS
|
|
329
445
|
+ MODEL_TIER_OVERRIDES_PAIRS
|
|
446
|
+
+ SOVEREIGN_ROLE_MANIFEST_PAIRS
|
|
447
|
+
+ SOVEREIGN_SELF_HEALING_DEPLOY_PAIRS
|
|
448
|
+
+ RELEASE_TRIGGER_ADAPTER_PAIRS
|
|
330
449
|
),
|
|
331
450
|
}
|
|
332
451
|
|