You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -268,6 +268,7 @@ The following community-contributed extensions are available in [`catalog.commun
268
268
| Spec Reference Loader | Reads the ## References section from the feature spec and loads only the listed docs into context |`docs`| Read-only |[spec-kit-spec-reference-loader](https://github.com/KevinBrown5280/spec-kit-spec-reference-loader)|
269
269
| Spec Critique Extension | Dual-lens critical review of spec and plan from product strategy and engineering risk perspectives |`docs`| Read-only |[spec-kit-critique](https://github.com/arunt14/spec-kit-critique)|
270
270
| Spec Diagram | Auto-generate Mermaid diagrams of SDD workflow state, feature progress, and task dependencies |`visibility`| Read-only |[spec-kit-diagram-](https://github.com/Quratulain-bilal/spec-kit-diagram-)|
271
+
| Spec Kit Schedule | Optimal multi-agent task scheduling via CP-SAT — DAG precedence, hallucination-aware caps, file-conflict avoidance, stochastic durations, replanning, and interactive HTML output |`process`| Read+Write |[spec-kit-schedule](https://github.com/jfranc38/spec-kit-schedule)|
271
272
| Spec Orchestrator | Cross-feature orchestration — track state, select tasks, and detect conflicts across parallel specs |`process`| Read-only |[spec-kit-orchestrator](https://github.com/Quratulain-bilal/spec-kit-orchestrator)|
272
273
| Spec Refine | Update specs in-place, propagate changes to plan and tasks, and diff impact across artifacts |`process`| Read+Write |[spec-kit-refine](https://github.com/Quratulain-bilal/spec-kit-refine)|
273
274
| Spec Scope | Effort estimation and scope tracking — estimate work, detect creep, and budget time per phase |`process`| Read-only |[spec-kit-scope-](https://github.com/Quratulain-bilal/spec-kit-scope-)|
"description": "Optimal multi-agent task scheduling via CP-SAT solver with DAG precedence, hallucination-aware caps, file-conflict avoidance, stochastic durations, replanning, and interactive HTML output",
console.print(f"[red]Error:[/red] Failed to install shared infrastructure: {exc}")
@@ -2583,7 +2605,8 @@ def integration_uninstall(
2583
2605
defintegration_switch(
2584
2606
target: str=typer.Argument(help="Integration key to switch to"),
2585
2607
script: str|None=typer.Option(None, "--script", help="Script type: sh or ps (default: from init-options.json or platform default)"),
2586
-
force: bool=typer.Option(False, "--force", help="Force removal of modified files during uninstall"),
2608
+
force: bool=typer.Option(False, "--force", help="Force removal of modified files during uninstall of the previous integration"),
2609
+
refresh_shared_infra: bool=typer.Option(False, "--refresh-shared-infra", help="Also overwrite shared infrastructure files even if you customized them (otherwise customizations are preserved)"),
2587
2610
integration_options: str|None=typer.Option(None, "--integration-options", help='Options for the target integration'),
2588
2611
):
2589
2612
"""Switch from the current integration to a different one."""
0 commit comments