solidworks_mcp.ui.services.checkpoint_service¶
solidworks_mcp.ui.services.checkpoint_service ¶
Checkpoint execution service for the Prefab CAD assistant dashboard.
Responsible for planning and executing individual checkpoint steps against the SolidWorks adapter.
Design note
_run_checkpoint_tools uses a handler map to dispatch tool names to adapter
calls, allowing new tool bindings without growing a long conditional chain.
Attributes¶
DEFAULT_API_ORIGIN
module-attribute
¶
DEFAULT_USER_GOAL
module-attribute
¶
DEFAULT_USER_GOAL = 'Design a printable mounting component with documented constraints and fastener strategy.'
Functions¶
_checkpoint_script_dir ¶
_checkpoint_script_path ¶
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
_execute_tool
async
¶
Dispatch tool to the adapter using parameters from planned.
Returns a tool_run dict on success, raises on failure, or returns None for unknown tools (caller treats None as mocked). Uses sensible defaults for any missing geometry parameters.
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 | |
_open_empty_part_before_checkpoint
async
¶
_open_empty_part_before_checkpoint(*, session_id: str, session_row: dict[str, Any], db_path: Path | None, api_origin: str) -> dict[str, Any]
Create a blank part document and refresh preview before checkpoint execution.
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | |
_pf ¶
Return the first float-convertible value found under any of keys.
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
_planned_tool_payloads ¶
Return ordered payload dicts for a tool from planned action JSON.
Supports either flat payloads (top-level keys) or nested execution-style
payloads stored under tool and tool#N keys.
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
_planned_tools ¶
Return the list of tool names from a planned-action dict.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
planned
|
dict[str, Any]
|
Parsed planned-action JSON dict. |
required |
Returns:
| Type | Description |
|---|---|
list[str]
|
List of tool name strings. |
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
_pv ¶
_pv(planned: dict[str, Any], *keys: str, size: int = 4, default: list[float] | None = None) -> list[float]
Return a float list of size from the first matching key in planned.
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
_render_checkpoint_script ¶
_render_checkpoint_script(planned: dict[str, Any], *, session_id: str, checkpoint_index: int, checkpoint_title: str) -> str
Render a strict script for checkpoint execution.
The generated script has explicit breakpoint comments and does not use default geometry fallbacks. Missing parameters raise errors so users can repair the plan.
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | |
_run_checkpoint_tools
async
¶
_run_checkpoint_tools(planned: dict[str, Any], *, session_id: str = DEFAULT_SESSION_ID, checkpoint_index: int = 0, checkpoint_title: str = '', repair_context: dict[str, Any] | None = None) -> dict[str, Any]
Execute checkpoint tools directly via the adapter with mocked-tool handling.
Generates the checkpoint script as an audit artifact but executes tools in-process so that test adapters (monkeypatched create_adapter) work. Tools in _MOCKED_TOOLS and unrecognized tool names are recorded as mocked and do not block checkpoint success.
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 | |
_should_open_empty_part ¶
Return whether checkpoint execution should open a blank part first.
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
create_adapter
async
¶
Async factory function for creating SolidWorks adapters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
SolidWorksMCPConfig
|
Configuration values for the operation. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
SolidWorksAdapter |
SolidWorksAdapter
|
The result produced by the operation. |
Source code in src/solidworks_mcp/adapters/factory.py
ensure_preview_dir ¶
Create and return the preview image directory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
preview_dir
|
Path | None
|
Override directory; defaults to |
None
|
Returns:
| Type | Description |
|---|---|
Path
|
Resolved |
Source code in src/solidworks_mcp/ui/services/_utils.py
execute_next_checkpoint
async
¶
execute_next_checkpoint(session_id: str = DEFAULT_SESSION_ID, *, db_path: Path | None = None) -> dict[str, Any]
Find and execute the next un-executed checkpoint in the session plan.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session_id
|
str
|
Dashboard session identifier. |
DEFAULT_SESSION_ID
|
db_path
|
Path | None
|
Optional SQLite path override. |
None
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Full dashboard state payload. |
Source code in src/solidworks_mcp/ui/services/checkpoint_service.py
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 | |
insert_tool_call_record ¶
insert_tool_call_record(*, session_id: str, tool_name: str, checkpoint_id: int | None = None, run_id: str | None = None, input_json: str | None = None, output_json: str | None = None, success: bool = True, latency_ms: float | None = None, db_path: Path | None = None) -> None
Insert one tool call execution record.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session_id
|
str
|
The session id value. |
required |
tool_name
|
str
|
The tool name value. |
required |
checkpoint_id
|
int | None
|
The checkpoint id value. Defaults to None. |
None
|
run_id
|
str | None
|
The run id value. Defaults to None. |
None
|
input_json
|
str | None
|
The input json value. Defaults to None. |
None
|
output_json
|
str | None
|
The output json value. Defaults to None. |
None
|
success
|
bool
|
The success value. Defaults to True. |
True
|
latency_ms
|
float | None
|
The latency ms value. Defaults to None. |
None
|
db_path
|
Path | None
|
The db path value. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
None |
None
|
None. |
Source code in src/solidworks_mcp/agents/history_db.py
list_plan_checkpoints ¶
List all checkpoints for a session.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session_id
|
str
|
The session id value. |
required |
db_path
|
Path | None
|
The db path value. Defaults to None. |
None
|
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
list[dict[str, Any]]: A list containing the resulting items. |
Source code in src/solidworks_mcp/agents/history_db.py
load_config ¶
Load configuration from file and environment variables.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file
|
str | None
|
The config file value. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
SolidWorksMCPConfig |
SolidWorksMCPConfig
|
The result produced by the operation. |
Source code in src/solidworks_mcp/config.py
merge_metadata ¶
merge_metadata(session_id: str, *, db_path: Path | None = None, user_goal: str | None = None, **updates: Any) -> dict[str, Any]
Read session metadata, merge updates into it, and write it back.
Implements the optimistic read-modify-write pattern used across all service functions that need to update one or more metadata keys without overwriting unrelated keys.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session_id
|
str
|
Target session identifier. |
required |
db_path
|
Path | None
|
Optional override for the SQLite database path. |
None
|
user_goal
|
str | None
|
When provided, also updates the |
None
|
**updates
|
Any
|
Arbitrary key-value pairs to merge into metadata. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The merged metadata dict after the write. |
Source code in src/solidworks_mcp/ui/services/_utils.py
parse_json_blob ¶
Parse a JSON string into a dict, returning an empty dict on any failure.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
payload
|
str | None
|
Raw JSON string, or |
required |
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Parsed dict, or |
Source code in src/solidworks_mcp/ui/services/_utils.py
update_plan_checkpoint ¶
update_plan_checkpoint(checkpoint_id: int, *, approved_by_user: bool | None = None, executed: bool | None = None, result_json: str | None = None, rollback_snapshot_id: int | None = None, db_path: Path | None = None) -> None
Patch checkpoint approval/execution fields.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
checkpoint_id
|
int
|
The checkpoint id value. |
required |
approved_by_user
|
bool | None
|
The approved by user value. Defaults to None. |
None
|
executed
|
bool | None
|
The executed value. Defaults to None. |
None
|
result_json
|
str | None
|
The result json value. Defaults to None. |
None
|
rollback_snapshot_id
|
int | None
|
The rollback snapshot id value. Defaults to None. |
None
|
db_path
|
Path | None
|
The db path value. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
None |
None
|
None. |
Source code in src/solidworks_mcp/agents/history_db.py
upsert_design_session ¶
upsert_design_session(*, session_id: str, user_goal: str, source_mode: str = 'model', accepted_family: str | None = None, status: str = 'active', current_checkpoint_index: int = 0, metadata_json: str | None = None, db_path: Path | None = None) -> None
Create or update one interactive design session row.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session_id
|
str
|
The session id value. |
required |
user_goal
|
str
|
The user goal value. |
required |
source_mode
|
str
|
The source mode value. Defaults to "model". |
'model'
|
accepted_family
|
str | None
|
The accepted family value. Defaults to None. |
None
|
status
|
str
|
The status value. Defaults to "active". |
'active'
|
current_checkpoint_index
|
int
|
The current checkpoint index value. Defaults to 0. |
0
|
metadata_json
|
str | None
|
The metadata json value. Defaults to None. |
None
|
db_path
|
Path | None
|
The db path value. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
None |
None
|
None. |