@nimiplatform/nimi-coding 0.1.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/LICENSE +21 -0
- package/README.md +348 -0
- package/adapters/README.md +25 -0
- package/adapters/claude/README.md +89 -0
- package/adapters/claude/profile.yaml +70 -0
- package/adapters/codex/README.md +53 -0
- package/adapters/codex/profile.yaml +78 -0
- package/adapters/oh-my-codex/README.md +185 -0
- package/adapters/oh-my-codex/profile.yaml +46 -0
- package/bin/nimicoding.mjs +6 -0
- package/cli/commands/admit-high-risk-decision.mjs +108 -0
- package/cli/commands/audit-sweep.mjs +341 -0
- package/cli/commands/blueprint-audit.mjs +91 -0
- package/cli/commands/clear.mjs +168 -0
- package/cli/commands/closeout.mjs +183 -0
- package/cli/commands/decide-high-risk-execution.mjs +124 -0
- package/cli/commands/doctor.mjs +53 -0
- package/cli/commands/generate-spec-derived-docs.mjs +131 -0
- package/cli/commands/handoff.mjs +123 -0
- package/cli/commands/ingest-high-risk-execution.mjs +95 -0
- package/cli/commands/review-high-risk-execution.mjs +95 -0
- package/cli/commands/start.mjs +717 -0
- package/cli/commands/topic-formatters.mjs +382 -0
- package/cli/commands/topic-goal.mjs +33 -0
- package/cli/commands/topic-options-shared.mjs +27 -0
- package/cli/commands/topic-options-workflow.mjs +767 -0
- package/cli/commands/topic-options.mjs +626 -0
- package/cli/commands/topic-runner.mjs +169 -0
- package/cli/commands/topic.mjs +795 -0
- package/cli/commands/validate-acceptance.mjs +5 -0
- package/cli/commands/validate-ai-governance.mjs +214 -0
- package/cli/commands/validate-execution-packet.mjs +5 -0
- package/cli/commands/validate-orchestration-state.mjs +5 -0
- package/cli/commands/validate-prompt.mjs +5 -0
- package/cli/commands/validate-spec-audit.mjs +27 -0
- package/cli/commands/validate-spec-governance.mjs +124 -0
- package/cli/commands/validate-spec-tree.mjs +27 -0
- package/cli/commands/validate-worker-output.mjs +5 -0
- package/cli/constants.mjs +489 -0
- package/cli/help.mjs +134 -0
- package/cli/index.mjs +103 -0
- package/cli/lib/adapter-profiles.mjs +403 -0
- package/cli/lib/audit-execution.mjs +52 -0
- package/cli/lib/audit-sweep-runtime/admissions.mjs +381 -0
- package/cli/lib/audit-sweep-runtime/audit-validity.mjs +333 -0
- package/cli/lib/audit-sweep-runtime/chunks.mjs +697 -0
- package/cli/lib/audit-sweep-runtime/closeout.mjs +144 -0
- package/cli/lib/audit-sweep-runtime/codex-auditor-evidence.mjs +639 -0
- package/cli/lib/audit-sweep-runtime/codex-auditor.mjs +515 -0
- package/cli/lib/audit-sweep-runtime/common.mjs +329 -0
- package/cli/lib/audit-sweep-runtime/coverage-quality.mjs +172 -0
- package/cli/lib/audit-sweep-runtime/evidence-assignment.mjs +152 -0
- package/cli/lib/audit-sweep-runtime/format.mjs +57 -0
- package/cli/lib/audit-sweep-runtime/ingest.mjs +486 -0
- package/cli/lib/audit-sweep-runtime/inventory-spec-chunks.mjs +198 -0
- package/cli/lib/audit-sweep-runtime/inventory.mjs +728 -0
- package/cli/lib/audit-sweep-runtime/ledger.mjs +315 -0
- package/cli/lib/audit-sweep-runtime/p0p1-profile.mjs +101 -0
- package/cli/lib/audit-sweep-runtime/remediation.mjs +349 -0
- package/cli/lib/audit-sweep-runtime/rerun.mjs +129 -0
- package/cli/lib/audit-sweep-runtime/risk-budget.mjs +300 -0
- package/cli/lib/audit-sweep-runtime/status.mjs +62 -0
- package/cli/lib/audit-sweep-runtime/validators-ledger.mjs +215 -0
- package/cli/lib/audit-sweep-runtime/validators.mjs +758 -0
- package/cli/lib/audit-sweep.mjs +18 -0
- package/cli/lib/authority-convergence.mjs +309 -0
- package/cli/lib/blueprint-audit.mjs +370 -0
- package/cli/lib/bootstrap.mjs +228 -0
- package/cli/lib/closeout.mjs +623 -0
- package/cli/lib/codex-sdk-runner.mjs +76 -0
- package/cli/lib/contracts.mjs +180 -0
- package/cli/lib/doctor.mjs +18 -0
- package/cli/lib/entrypoints.mjs +274 -0
- package/cli/lib/external-execution.mjs +101 -0
- package/cli/lib/fs-helpers.mjs +33 -0
- package/cli/lib/handoff.mjs +785 -0
- package/cli/lib/high-risk-admission.mjs +442 -0
- package/cli/lib/high-risk-decision.mjs +324 -0
- package/cli/lib/high-risk-ingest.mjs +317 -0
- package/cli/lib/high-risk-review.mjs +263 -0
- package/cli/lib/internal/contracts-loaders.mjs +132 -0
- package/cli/lib/internal/contracts-parse-high-risk.mjs +131 -0
- package/cli/lib/internal/contracts-parse.mjs +457 -0
- package/cli/lib/internal/contracts-validators.mjs +398 -0
- package/cli/lib/internal/doctor-bootstrap-surface.mjs +359 -0
- package/cli/lib/internal/doctor-delegated-surface.mjs +256 -0
- package/cli/lib/internal/doctor-finalize.mjs +385 -0
- package/cli/lib/internal/doctor-format.mjs +286 -0
- package/cli/lib/internal/doctor-inspectors.mjs +294 -0
- package/cli/lib/internal/doctor-state.mjs +205 -0
- package/cli/lib/internal/governance/ai/ai-context-budget-core.mjs +315 -0
- package/cli/lib/internal/governance/ai/ai-structure-budget-core.mjs +358 -0
- package/cli/lib/internal/governance/ai/check-agents-freshness.mjs +155 -0
- package/cli/lib/internal/governance/ai/check-high-risk-doc-metadata-core.mjs +173 -0
- package/cli/lib/internal/governance/config.mjs +150 -0
- package/cli/lib/internal/governance/runner.mjs +35 -0
- package/cli/lib/internal/governance/shared/read-yaml-with-fragments.mjs +49 -0
- package/cli/lib/internal/validators-artifacts.mjs +515 -0
- package/cli/lib/internal/validators-shared.mjs +28 -0
- package/cli/lib/internal/validators-spec-helpers.mjs +186 -0
- package/cli/lib/internal/validators-spec.mjs +410 -0
- package/cli/lib/shared.mjs +83 -0
- package/cli/lib/topic-draft-packets.mjs +48 -0
- package/cli/lib/topic-goal.mjs +361 -0
- package/cli/lib/topic-runner.mjs +772 -0
- package/cli/lib/topic.mjs +93 -0
- package/cli/lib/ui.mjs +178 -0
- package/cli/lib/validators.mjs +78 -0
- package/cli/lib/value-helpers.mjs +24 -0
- package/cli/lib/yaml-helpers.mjs +133 -0
- package/cli/nimicoding.mjs +1 -0
- package/cli/seeds/bootstrap.mjs +47 -0
- package/config/audit-execution-artifacts.yaml +20 -0
- package/config/bootstrap.yaml +6 -0
- package/config/external-execution-artifacts.yaml +16 -0
- package/config/host-adapter.yaml +30 -0
- package/config/host-profile.yaml +29 -0
- package/config/installer-evidence.yaml +31 -0
- package/config/skill-installer.yaml +23 -0
- package/config/skill-manifest.yaml +46 -0
- package/config/skills.yaml +30 -0
- package/config/spec-generation-inputs.yaml +25 -0
- package/contracts/acceptance.schema.yaml +16 -0
- package/contracts/admission-checklist.schema.yaml +15 -0
- package/contracts/audit-chunk.schema.yaml +110 -0
- package/contracts/audit-closeout.schema.yaml +51 -0
- package/contracts/audit-finding.schema.yaml +61 -0
- package/contracts/audit-ledger.schema.yaml +138 -0
- package/contracts/audit-plan.schema.yaml +123 -0
- package/contracts/audit-remediation-map.schema.yaml +51 -0
- package/contracts/audit-rerun.schema.yaml +31 -0
- package/contracts/audit-sweep-result.yaml +49 -0
- package/contracts/authority-convergence-audit.schema.yaml +19 -0
- package/contracts/closeout.schema.yaml +25 -0
- package/contracts/decision-review.schema.yaml +16 -0
- package/contracts/doc-spec-audit-result.yaml +19 -0
- package/contracts/execution-packet.schema.yaml +49 -0
- package/contracts/external-host-compatibility.yaml +22 -0
- package/contracts/forbidden-shortcuts.catalog.yaml +23 -0
- package/contracts/high-risk-admission.schema.yaml +23 -0
- package/contracts/high-risk-execution-result.yaml +20 -0
- package/contracts/orchestration-state.schema.yaml +41 -0
- package/contracts/overflow-continuation.schema.yaml +12 -0
- package/contracts/packet.schema.yaml +30 -0
- package/contracts/pending-note.schema.yaml +17 -0
- package/contracts/prompt.schema.yaml +12 -0
- package/contracts/remediation.schema.yaml +16 -0
- package/contracts/result.schema.yaml +24 -0
- package/contracts/spec-generation-audit.schema.yaml +31 -0
- package/contracts/spec-generation-inputs.schema.yaml +39 -0
- package/contracts/spec-reconstruction-result.yaml +37 -0
- package/contracts/topic-goal.schema.yaml +78 -0
- package/contracts/topic-run-ledger.schema.yaml +72 -0
- package/contracts/topic-step-decision.schema.yaml +45 -0
- package/contracts/topic.schema.yaml +65 -0
- package/contracts/true-close.schema.yaml +15 -0
- package/contracts/wave.schema.yaml +29 -0
- package/contracts/worker-output.schema.yaml +15 -0
- package/methodology/audit-sweep-p0p1-recall.yaml +45 -0
- package/methodology/authority-convergence-policy.yaml +42 -0
- package/methodology/core.yaml +25 -0
- package/methodology/four-closure-policy.yaml +28 -0
- package/methodology/overflow-continuation-policy.yaml +14 -0
- package/methodology/role-separation-policy.yaml +28 -0
- package/methodology/skill-exchange-projection.yaml +114 -0
- package/methodology/skill-handoff.yaml +34 -0
- package/methodology/skill-installer-result.yaml +27 -0
- package/methodology/skill-installer-summary-projection.yaml +181 -0
- package/methodology/skill-runtime.yaml +23 -0
- package/methodology/spec-reconstruction.yaml +63 -0
- package/methodology/spec-target-truth-profile.yaml +53 -0
- package/methodology/topic-lifecycle-report.yaml +144 -0
- package/methodology/topic-lifecycle.yaml +37 -0
- package/methodology/topic-naming-ontology.yaml +21 -0
- package/methodology/topic-ontology.yaml +38 -0
- package/methodology/topic-validation-policy.yaml +9 -0
- package/methodology/wave-dag-policy.yaml +14 -0
- package/package.json +50 -0
- package/spec/_meta/command-gating-matrix.yaml +110 -0
- package/spec/_meta/generate-drift-migration-checklist.yaml +155 -0
- package/spec/_meta/governance-routing-cutover-checklist.yaml +35 -0
- package/spec/_meta/phase2-impacted-surface-matrix.yaml +44 -0
- package/spec/_meta/spec-authority-cutover-readiness.yaml +104 -0
- package/spec/_meta/spec-tree-model.yaml +72 -0
- package/spec/bootstrap-state.yaml +99 -0
- package/spec/product-scope.yaml +56 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
spec_authority_cutover_readiness:
|
|
3
|
+
posture: readiness_only_not_physical_migration
|
|
4
|
+
current_authority_root: spec
|
|
5
|
+
canonical_generation_root: .nimi/spec
|
|
6
|
+
benchmark_posture: benchmark_oracle_to_generated_canonical_tree
|
|
7
|
+
overall_status_enum:
|
|
8
|
+
- no_go
|
|
9
|
+
- ready_for_admission
|
|
10
|
+
gate_families:
|
|
11
|
+
- id: canonical_generation_gate
|
|
12
|
+
posture: generic_methodology
|
|
13
|
+
objective: prove that the generated canonical tree is stable, auditable, and fully reconstructed
|
|
14
|
+
required_evidence:
|
|
15
|
+
commands:
|
|
16
|
+
- pnpm nimicoding:validate-spec-tree
|
|
17
|
+
- pnpm nimicoding:validate-spec-audit
|
|
18
|
+
artifacts:
|
|
19
|
+
- .nimi/local/handoff-results/spec_reconstruction.json
|
|
20
|
+
- .nimi/local/handoff-results/doc_spec_audit.json
|
|
21
|
+
pass_criteria:
|
|
22
|
+
- validate_spec_tree_passes
|
|
23
|
+
- validate_spec_audit_passes
|
|
24
|
+
- spec_reconstruction_closeout_outcome_is_completed
|
|
25
|
+
- spec_reconstruction_closeout_summary_status_is_reconstructed
|
|
26
|
+
- doc_spec_audit_closeout_outcome_is_completed
|
|
27
|
+
- doc_spec_audit_closeout_summary_status_is_aligned
|
|
28
|
+
failure_meaning:
|
|
29
|
+
- canonical_tree_is_not_yet_a_stable_cutover_candidate
|
|
30
|
+
- id: benchmark_parity_gate
|
|
31
|
+
posture: repo_local_special_case_when_blueprint_declared
|
|
32
|
+
objective: prove that the repo-local benchmark oracle and generated canonical tree are parity-checked without redefining authority
|
|
33
|
+
required_evidence:
|
|
34
|
+
commands:
|
|
35
|
+
- pnpm nimicoding:blueprint-audit
|
|
36
|
+
files:
|
|
37
|
+
- .nimi/spec/_meta/blueprint-reference.yaml
|
|
38
|
+
- .nimi/spec/_meta/direct-copy-validation-checklist.yaml
|
|
39
|
+
pass_criteria:
|
|
40
|
+
- blueprint_reference_still_declares_spec_as_benchmark_oracle
|
|
41
|
+
- blueprint_audit_passes_when_repo_local_blueprint_is_declared
|
|
42
|
+
- direct_copy_remains_support_only_not_cutover
|
|
43
|
+
failure_meaning:
|
|
44
|
+
- benchmark_parity_is_missing_or_is_trying_to_define_authority
|
|
45
|
+
- id: drift_pipeline_gate
|
|
46
|
+
posture: repo_local_special_case
|
|
47
|
+
objective: prove that all spec-root drift and generation pipelines have an explicit root-flip readiness mapping before any authority change
|
|
48
|
+
required_evidence:
|
|
49
|
+
files:
|
|
50
|
+
- .nimi/spec/_meta/generate-drift-migration-checklist.yaml
|
|
51
|
+
commands:
|
|
52
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope spec-human-doc --check
|
|
53
|
+
- pnpm check:spec-semantic-completeness
|
|
54
|
+
- pnpm check:runtime-proto-spec-linkage
|
|
55
|
+
- pnpm exec nimicoding validate-spec-governance --profile nimi --scope runtime-consistency
|
|
56
|
+
- pnpm exec nimicoding validate-spec-governance --profile nimi --scope cognition-consistency
|
|
57
|
+
- pnpm exec nimicoding validate-spec-governance --profile nimi --scope sdk-consistency
|
|
58
|
+
- pnpm exec nimicoding validate-spec-governance --profile nimi --scope desktop-consistency
|
|
59
|
+
- pnpm exec nimicoding validate-spec-governance --profile nimi --scope platform-consistency
|
|
60
|
+
- pnpm exec nimicoding validate-spec-governance --profile nimi --scope realm-consistency
|
|
61
|
+
- pnpm exec nimicoding validate-spec-governance --profile nimi --scope future-consistency
|
|
62
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope runtime --check
|
|
63
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope cognition --check
|
|
64
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope sdk --check
|
|
65
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope desktop --check
|
|
66
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope platform --check
|
|
67
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope realm --check
|
|
68
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope future --check
|
|
69
|
+
pass_criteria:
|
|
70
|
+
- every_required_drift_or_generation_command_is_mapped
|
|
71
|
+
- no_required_command_is_left_without_a_post_cutover_root
|
|
72
|
+
failure_meaning:
|
|
73
|
+
- root_flip_would_break_existing_spec_generation_or_drift_gates
|
|
74
|
+
- id: governance_routing_gate
|
|
75
|
+
posture: repo_local_special_case
|
|
76
|
+
objective: prove that every authority-routing surface states the current authority root, generated canonical root, and non-cutover posture consistently
|
|
77
|
+
required_evidence:
|
|
78
|
+
files:
|
|
79
|
+
- AGENTS.md
|
|
80
|
+
- CLAUDE.md
|
|
81
|
+
- spec/AGENTS.md
|
|
82
|
+
- nimi-coding/README.md
|
|
83
|
+
- nimi-coding/adapters/oh-my-codex/README.md
|
|
84
|
+
- nimi-coding/cli/lib/entrypoints.mjs
|
|
85
|
+
- .nimi/spec/_meta/governance-routing-cutover-checklist.yaml
|
|
86
|
+
pass_criteria:
|
|
87
|
+
- docs_state_that_spec_remains_current_authority
|
|
88
|
+
- docs_state_that_dot_nimi_spec_is_generated_canonical_tree
|
|
89
|
+
- docs_state_that_readiness_is_not_cutover
|
|
90
|
+
failure_meaning:
|
|
91
|
+
- humans_or_external_hosts_could_misread_readiness_as_authority_flip
|
|
92
|
+
- id: authority_admission_gate
|
|
93
|
+
posture: repo_local_special_case
|
|
94
|
+
objective: prove that an explicit redesign admission packet exists under spec authority before any cutover execution is considered
|
|
95
|
+
required_evidence:
|
|
96
|
+
files:
|
|
97
|
+
- spec/canonical-authority-cutover-admission.md
|
|
98
|
+
pass_criteria:
|
|
99
|
+
- redesign_admission_doc_exists_under_spec_authority
|
|
100
|
+
- redesign_admission_doc_declares_required_metadata
|
|
101
|
+
- redesign_admission_doc_states_current_and_future_authority_posture
|
|
102
|
+
- redesign_admission_doc_forbids_long_lived_parallel_truth
|
|
103
|
+
failure_meaning:
|
|
104
|
+
- authority_cutover_has_not_been_preflighted_under_current_spec_authority
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
spec_tree_model:
|
|
3
|
+
profile: minimal
|
|
4
|
+
canonical_root: .nimi/spec
|
|
5
|
+
authority_mode: external_authority_active
|
|
6
|
+
domains:
|
|
7
|
+
- id: project
|
|
8
|
+
root: .nimi/spec/project
|
|
9
|
+
normative_root: .nimi/spec/project/kernel
|
|
10
|
+
tables_root: .nimi/spec/project/kernel/tables
|
|
11
|
+
guide_paths: []
|
|
12
|
+
normative_classes:
|
|
13
|
+
- id: kernel_markdown
|
|
14
|
+
path_patterns:
|
|
15
|
+
- .nimi/spec/**/kernel/*.md
|
|
16
|
+
allowed_extensions:
|
|
17
|
+
- .md
|
|
18
|
+
normative: true
|
|
19
|
+
- id: kernel_tables
|
|
20
|
+
path_patterns:
|
|
21
|
+
- .nimi/spec/**/kernel/tables/**/*.yaml
|
|
22
|
+
- .nimi/spec/**/kernel/tables/**/*.yml
|
|
23
|
+
allowed_extensions:
|
|
24
|
+
- .yaml
|
|
25
|
+
- .yml
|
|
26
|
+
normative: true
|
|
27
|
+
derived_classes:
|
|
28
|
+
- id: kernel_generated
|
|
29
|
+
path_patterns:
|
|
30
|
+
- .nimi/spec/**/kernel/generated/**/*.md
|
|
31
|
+
generator_refs:
|
|
32
|
+
- pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope spec-human-doc
|
|
33
|
+
normative: false
|
|
34
|
+
guidance_classes:
|
|
35
|
+
- id: domain_guides
|
|
36
|
+
path_patterns:
|
|
37
|
+
- .nimi/spec/**/*.md
|
|
38
|
+
excluded_path_patterns:
|
|
39
|
+
- .nimi/spec/**/kernel/*.md
|
|
40
|
+
- .nimi/spec/**/kernel/generated/**/*.md
|
|
41
|
+
must_reference_normative_ids: true
|
|
42
|
+
normative: false
|
|
43
|
+
required_files:
|
|
44
|
+
minimal:
|
|
45
|
+
- .nimi/spec/INDEX.md
|
|
46
|
+
- .nimi/spec/_meta/spec-tree-model.yaml
|
|
47
|
+
- .nimi/spec/project/kernel/index.md
|
|
48
|
+
- .nimi/spec/project/kernel/core-rules.md
|
|
49
|
+
- .nimi/spec/project/kernel/tables/rule-catalog.yaml
|
|
50
|
+
standard:
|
|
51
|
+
- .nimi/spec/INDEX.md
|
|
52
|
+
- .nimi/spec/_meta/spec-tree-model.yaml
|
|
53
|
+
mature:
|
|
54
|
+
- .nimi/spec/INDEX.md
|
|
55
|
+
- .nimi/spec/_meta/spec-tree-model.yaml
|
|
56
|
+
generated_pipelines:
|
|
57
|
+
- id: spec_human_doc
|
|
58
|
+
owner_surface: repository_root_scripts
|
|
59
|
+
input_roots:
|
|
60
|
+
- .nimi/spec
|
|
61
|
+
output_roots:
|
|
62
|
+
- spec/generated
|
|
63
|
+
generate_command: pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope spec-human-doc
|
|
64
|
+
drift_check_command: pnpm exec nimicoding generate-spec-derived-docs --profile nimi --scope spec-human-doc --check
|
|
65
|
+
fail_closed_rules:
|
|
66
|
+
- unknown_profile_is_invalid
|
|
67
|
+
- canonical_root_outside_.nimi/spec_is_invalid
|
|
68
|
+
- domain_roots_must_not_escape_canonical_root
|
|
69
|
+
- normative_and_derived_path_overlap_is_invalid
|
|
70
|
+
- required_files_must_stay_under_declared_domain_roots
|
|
71
|
+
- generated_outputs_must_not_overlap_normative_roots
|
|
72
|
+
- canonical_active_requires_no_other_active_normative_root
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
state:
|
|
3
|
+
mode: bootstrap_only
|
|
4
|
+
tree_state: bootstrap_only
|
|
5
|
+
authority_mode: external_authority_active
|
|
6
|
+
blueprint_mode: none
|
|
7
|
+
reconstruction_required: true
|
|
8
|
+
reconstruction_owner: ai_skills
|
|
9
|
+
lifecycle_contract:
|
|
10
|
+
id: nimicoding.spec-bootstrap-state.v2
|
|
11
|
+
state_carrier_ref: .nimi/spec/bootstrap-state.yaml
|
|
12
|
+
posture_carrier_ref: .nimi/spec/product-scope.yaml
|
|
13
|
+
tree_state_enum:
|
|
14
|
+
- bootstrap_only
|
|
15
|
+
- spec_tree_seeded
|
|
16
|
+
- canonical_tree_in_progress
|
|
17
|
+
- canonical_tree_ready
|
|
18
|
+
authority_mode_enum:
|
|
19
|
+
- external_authority_active
|
|
20
|
+
- canonical_cutover_ready
|
|
21
|
+
- canonical_active
|
|
22
|
+
blueprint_mode_enum:
|
|
23
|
+
- none
|
|
24
|
+
- repo_spec_blueprint
|
|
25
|
+
- custom_blueprint
|
|
26
|
+
blueprint_mode_semantics:
|
|
27
|
+
none: external_blueprint_reference_is_not_declared_in_project_local_truth
|
|
28
|
+
repo_spec_blueprint: project_local_blueprint_reference_declares_repo_spec_root_for_redesign_or_audit
|
|
29
|
+
custom_blueprint: project_local_blueprint_reference_declares_a_non_repo_blueprint_root
|
|
30
|
+
legacy_mode_mapping:
|
|
31
|
+
- legacy_mode: bootstrap_only
|
|
32
|
+
tree_state: bootstrap_only
|
|
33
|
+
authority_mode: external_authority_active
|
|
34
|
+
blueprint_mode: none
|
|
35
|
+
reconstruction_required: true
|
|
36
|
+
ready_for_ai_reconstruction: true
|
|
37
|
+
- legacy_mode: reconstruction_seeded
|
|
38
|
+
tree_state: canonical_tree_in_progress
|
|
39
|
+
authority_mode: external_authority_active
|
|
40
|
+
blueprint_mode: none
|
|
41
|
+
reconstruction_required: false
|
|
42
|
+
ready_for_ai_reconstruction: false
|
|
43
|
+
fail_closed_rules:
|
|
44
|
+
- unknown_tree_state_is_invalid
|
|
45
|
+
- unknown_authority_mode_is_invalid
|
|
46
|
+
- unknown_blueprint_mode_is_invalid
|
|
47
|
+
- legacy_mode_must_map_to_declared_multi_axis_state
|
|
48
|
+
- canonical_active_requires_explicit_cutover_readiness
|
|
49
|
+
current_truth:
|
|
50
|
+
admitted_files:
|
|
51
|
+
- .nimi/methodology/core.yaml
|
|
52
|
+
- .nimi/methodology/spec-reconstruction.yaml
|
|
53
|
+
- .nimi/methodology/skill-runtime.yaml
|
|
54
|
+
- .nimi/methodology/skill-installer-result.yaml
|
|
55
|
+
- .nimi/methodology/skill-installer-summary-projection.yaml
|
|
56
|
+
- .nimi/methodology/skill-exchange-projection.yaml
|
|
57
|
+
- .nimi/methodology/skill-handoff.yaml
|
|
58
|
+
- .nimi/spec/_meta/spec-tree-model.yaml
|
|
59
|
+
- .nimi/spec/_meta/command-gating-matrix.yaml
|
|
60
|
+
- .nimi/spec/_meta/spec-authority-cutover-readiness.yaml
|
|
61
|
+
- .nimi/spec/_meta/generate-drift-migration-checklist.yaml
|
|
62
|
+
- .nimi/spec/_meta/governance-routing-cutover-checklist.yaml
|
|
63
|
+
- .nimi/spec/_meta/phase2-impacted-surface-matrix.yaml
|
|
64
|
+
- .nimi/spec/product-scope.yaml
|
|
65
|
+
- .nimi/spec/bootstrap-state.yaml
|
|
66
|
+
- .nimi/config/bootstrap.yaml
|
|
67
|
+
- .nimi/config/skills.yaml
|
|
68
|
+
- .nimi/config/skill-manifest.yaml
|
|
69
|
+
- .nimi/config/host-profile.yaml
|
|
70
|
+
- .nimi/config/host-adapter.yaml
|
|
71
|
+
- .nimi/config/external-execution-artifacts.yaml
|
|
72
|
+
- .nimi/config/skill-installer.yaml
|
|
73
|
+
- .nimi/config/installer-evidence.yaml
|
|
74
|
+
- .nimi/contracts/spec-reconstruction-result.yaml
|
|
75
|
+
- .nimi/contracts/doc-spec-audit-result.yaml
|
|
76
|
+
- .nimi/contracts/high-risk-execution-result.yaml
|
|
77
|
+
- .nimi/contracts/high-risk-admission.schema.yaml
|
|
78
|
+
- .nimi/contracts/external-host-compatibility.yaml
|
|
79
|
+
- .nimi/contracts/execution-packet.schema.yaml
|
|
80
|
+
- .nimi/contracts/orchestration-state.schema.yaml
|
|
81
|
+
- .nimi/contracts/prompt.schema.yaml
|
|
82
|
+
- .nimi/contracts/worker-output.schema.yaml
|
|
83
|
+
- .nimi/contracts/acceptance.schema.yaml
|
|
84
|
+
status:
|
|
85
|
+
bootstrap_contract_version: 1
|
|
86
|
+
ready_for_ai_reconstruction: true
|
|
87
|
+
external_handoff_required: true
|
|
88
|
+
human_projection_mode: derived_only
|
|
89
|
+
canonical_root_candidate: .nimi/spec
|
|
90
|
+
active_authority_root: external_authority
|
|
91
|
+
cutover_readiness:
|
|
92
|
+
authority_contract_ref: .nimi/spec/_meta/spec-authority-cutover-readiness.yaml
|
|
93
|
+
overall_status: no_go
|
|
94
|
+
gate_status:
|
|
95
|
+
canonical_generation_gate: pending
|
|
96
|
+
benchmark_parity_gate: pending
|
|
97
|
+
drift_pipeline_gate: pending
|
|
98
|
+
governance_routing_gate: pending
|
|
99
|
+
authority_admission_gate: pending
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
product:
|
|
3
|
+
package_name: "@nimiplatform/nimi-coding"
|
|
4
|
+
mission: ai_native_coding_governance_toolkit
|
|
5
|
+
target_experience:
|
|
6
|
+
install_step: "npm install -D @nimiplatform/nimi-coding"
|
|
7
|
+
bootstrap_step: "npx nimicoding start"
|
|
8
|
+
reconstruction_owner: ai_skills
|
|
9
|
+
canonical_spec_root: ".nimi/spec"
|
|
10
|
+
phase_one_posture: contract_and_checklist_only
|
|
11
|
+
methodology_posture:
|
|
12
|
+
risk_shape: authority_bearing_or_high_risk_only
|
|
13
|
+
execution_default: inline_manager_worker
|
|
14
|
+
continuity_model: continuity_agnostic
|
|
15
|
+
standalone_completion:
|
|
16
|
+
profile: boundary_complete
|
|
17
|
+
completed_surfaces:
|
|
18
|
+
- bootstrap
|
|
19
|
+
- doctor
|
|
20
|
+
- handoff
|
|
21
|
+
- validators
|
|
22
|
+
- topic_lifecycle_report_methodology
|
|
23
|
+
- closeout
|
|
24
|
+
- ingest
|
|
25
|
+
- review
|
|
26
|
+
- decision
|
|
27
|
+
- admission
|
|
28
|
+
- host_overlay_recognition
|
|
29
|
+
deferred_execution_surfaces:
|
|
30
|
+
- packet_bound_run_kernel
|
|
31
|
+
- provider_backed_execution
|
|
32
|
+
- scheduler
|
|
33
|
+
- notification
|
|
34
|
+
- automation_backend
|
|
35
|
+
- multi_topic_orchestration
|
|
36
|
+
promoted_parity_gap_summary:
|
|
37
|
+
- packet_bound_run_kernel
|
|
38
|
+
- provider_backed_execution
|
|
39
|
+
- scheduler_automation_notification
|
|
40
|
+
canonical_spec_model:
|
|
41
|
+
state_carrier_ref: .nimi/spec/bootstrap-state.yaml
|
|
42
|
+
posture_carrier_ref: .nimi/spec/product-scope.yaml
|
|
43
|
+
phase_one_contracts:
|
|
44
|
+
- .nimi/spec/_meta/spec-tree-model.yaml
|
|
45
|
+
- .nimi/spec/_meta/command-gating-matrix.yaml
|
|
46
|
+
- .nimi/spec/_meta/spec-authority-cutover-readiness.yaml
|
|
47
|
+
- .nimi/spec/_meta/generate-drift-migration-checklist.yaml
|
|
48
|
+
- .nimi/spec/_meta/governance-routing-cutover-checklist.yaml
|
|
49
|
+
- .nimi/spec/_meta/phase2-impacted-surface-matrix.yaml
|
|
50
|
+
- .nimi/spec/bootstrap-state.yaml
|
|
51
|
+
- .nimi/spec/product-scope.yaml
|
|
52
|
+
blocked_until_phase_two:
|
|
53
|
+
- command_behavior_rewrites_not_admitted
|
|
54
|
+
- authority_cutover_not_admitted
|
|
55
|
+
- physical_spec_tree_migration_not_admitted
|
|
56
|
+
high_risk_admissions_truth: .nimi/spec/high-risk-admissions.yaml
|