@mcpc-tech/core 0.2.17 → 0.3.1

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/index.mjs CHANGED
@@ -868,160 +868,166 @@ var SystemPrompts = {
868
868
  /**
869
869
  * Base system prompt for autonomous MCP execution
870
870
  */
871
- AUTONOMOUS_EXECUTION: `Autonomous AI Agent \`{toolName}\` that answers user questions through iterative self-invocation and collecting feedback.
871
+ AUTONOMOUS_EXECUTION: `Agentic tool \`{toolName}\` that executes complex tasks by iteratively calling actions, gathering results, and deciding next steps until completion. Use this tool when the task matches the manual below.
872
872
 
873
- <instructions>{description}</instructions>
873
+ You must follow the <manual/>, obey the <execution_rules/>, and use the <call_format/>.
874
874
 
875
- ## Execution Rules
876
- 1. **Follow instructions above** carefully
877
- 2. **Answer user question** as primary goal
878
- 3. **Execute** one action per call
879
- 4. **Collect feedback** from each action result
880
- 5. **Decide** next step:
875
+ <manual>
876
+ {description}
877
+ </manual>
878
+
879
+ <execution_rules>
880
+ 1. **Execute** one action per call
881
+ 2. **Collect** feedback from each action result
882
+ 3. **Decide** next step based on feedback:
881
883
  - **proceed**: More work needed
882
- - **complete**: Question answered (do NOT provide action field)
884
+ - **complete**: Task finished (omit action field)
883
885
  - **retry**: Current action failed
884
- 6. **Provide** parameter object matching action name
885
- 7. **Continue** until complete
886
+ 4. **Provide** parameters matching the action name
887
+ 5. **Continue** until task is complete
888
+ 6. Note: You are an agent exposed as an MCP tool - **"action" is an internal parameter, NOT an external MCP tool you can call**
889
+ </execution_rules>
886
890
 
887
- ## Call Format
891
+ <call_format>
888
892
  \`\`\`json
889
893
  {
890
- "action": "tool_name",
894
+ "action": "action_name",
891
895
  "decision": "proceed|retry",
892
- "tool_name": { /* tool parameters */ }
896
+ "action_name": { /* action parameters */ }
893
897
  }
894
898
  \`\`\`
895
899
 
896
- **When task is complete:**
900
+ When complete:
897
901
  \`\`\`json
898
902
  {
899
903
  "decision": "complete"
900
904
  }
901
- \`\`\``,
905
+ \`\`\`
906
+ </call_format>`,
902
907
  /**
903
908
  * Workflow execution system prompt
904
909
  */
905
- WORKFLOW_EXECUTION: `Agentic workflow execution tool \`{toolName}\` that processes requests through structured multi-step workflows.
906
-
907
- <instructions>{description}</instructions>
908
-
909
- ## Workflow Execution Protocol
910
+ WORKFLOW_EXECUTION: `Workflow tool \`{toolName}\` that executes multi-step workflows. Use this when your task requires sequential steps.
910
911
 
911
- **\u{1F3AF} FIRST CALL (Planning):**
912
- {planningInstructions}
912
+ <manual>
913
+ {description}
914
+ </manual>
913
915
 
914
- **\u26A1 SUBSEQUENT CALLS (Execution):**
915
- - Provide ONLY current step parameters
916
- - **ADVANCE STEP**: Set \`decision: "proceed"\` to move to next step
917
- - **RETRY STEP**: Set \`decision: "retry"\`
918
- - **COMPLETE WORKFLOW**: Set \`decision: "complete"\` when ready to finish
919
-
920
- **\u{1F6AB} Do NOT include \`steps\` parameter during normal execution**
921
- **\u2705 Include \`steps\` parameter ONLY when restarting workflow with \`init: true\`**
922
- **\u26A0\uFE0F CRITICAL: When retrying failed steps, MUST use \`decision: "retry"\`**`,
916
+ <rules>
917
+ 1. First call: {planningInstructions}
918
+ 2. Subsequent calls: Provide only current step parameters
919
+ 3. Use \`decision: "proceed"\` to advance, \`"retry"\` to retry, \`"complete"\` when done
920
+ 4. Include \`steps\` ONLY with \`init: true\`, never during execution
921
+ </rules>`,
923
922
  /**
924
- * JSON-only execution system prompt
923
+ * JSON-only execution system prompt for autonomous sampling mode
924
+ *
925
+ * Note: Sampling mode runs an internal LLM loop that autonomously calls tools until complete.
925
926
  */
926
- SAMPLING_EXECUTION: `Autonomous AI Agent \`{toolName}\` that answers user questions by iteratively collecting feedback and adapting your approach.
927
+ SAMPLING_EXECUTION: `Agent \`{toolName}\` that completes tasks by calling tools in an autonomous loop.
927
928
 
928
- <instructions>{description}</instructions>
929
+ <manual>
930
+ {description}
931
+ </manual>
929
932
 
930
- ## Execution Rules
931
- - Respond with valid JSON only
932
- - **Follow instructions above** carefully
933
- - **Answer user question** as primary goal
934
- - **Collect feedback** from each action result
935
- - **Adapt approach** based on gathered information
936
- - action = "X" \u2192 provide parameter "X"
937
- - Continue until question answered
933
+ <rules>
934
+ 1. Return valid JSON only (no markdown, no explanations)
935
+ 2. Execute one action per iteration
936
+ 3. When \`action\` is "X", include parameter "X" with tool inputs
937
+ 4. Adapt based on results from previous actions
938
+ 5. Continue until task is complete
939
+ </rules>
938
940
 
939
- ## JSON Response Format
940
- **During execution:**
941
+ <format>
942
+ During execution:
941
943
  \`\`\`json
942
944
  {
943
945
  "action": "tool_name",
944
946
  "decision": "proceed|retry",
945
- "tool_name": { /* tool parameters */ }
947
+ "tool_name": { /* parameters */ }
946
948
  }
947
949
  \`\`\`
948
950
 
949
- **When task is complete (do NOT include action):**
951
+ When complete (omit action):
950
952
  \`\`\`json
951
- {
952
- "decision": "complete"
953
- }
953
+ { "decision": "complete" }
954
954
  \`\`\`
955
955
 
956
- ## Available Tools
957
- {toolList}`,
956
+ Decisions:
957
+ - \`proceed\` = action succeeded, continue
958
+ - \`retry\` = action failed, try again
959
+ - \`complete\` = task finished
960
+ </format>
961
+
962
+ <tools>
963
+ {toolList}
964
+ </tools>`,
958
965
  /**
959
966
  * Sampling workflow execution system prompt combining sampling with workflow capabilities
967
+ *
968
+ * Note: Sampling mode runs an internal LLM loop that autonomously executes workflows.
960
969
  */
961
- SAMPLING_WORKFLOW_EXECUTION: `You are an autonomous AI Agent named \`{toolName}\` that processes instructions through iterative sampling execution within structured workflows.
970
+ SAMPLING_WORKFLOW_EXECUTION: `Workflow agent \`{toolName}\` that executes multi-step workflows autonomously.
962
971
 
963
- <instructions>{description}</instructions>
972
+ <manual>
973
+ {description}
974
+ </manual>
964
975
 
965
- ## Agentic Sampling Workflow Protocol
976
+ <rules>
977
+ 1. Return valid JSON only
978
+ 2. First iteration: Plan workflow and initialize with \`init: true\`
979
+ 3. Subsequent iterations: Execute current step
980
+ 4. Adapt based on step results
981
+ 5. Continue until all steps complete
982
+ </rules>
966
983
 
967
- **\u{1F9E0} AGENTIC REASONING (First Call - Workflow Planning):**
968
- 1. **Autonomous Analysis:** Independently analyze the user's instruction and identify the end goal
969
- 2. **Workflow Design:** Autonomously design a structured workflow with clear steps
970
- 3. **Tool Mapping:** Determine which tools are needed for each workflow step
971
- 4. **Initialization:** Start the workflow with proper step definitions
972
-
973
- **\u26A1 AGENTIC EXECUTION RULES (Subsequent Calls):**
974
- - Each response demonstrates autonomous reasoning and decision-making within workflow context
975
- - Make self-directed choices about step execution, retry, or advancement
976
- - Adapt your approach based on previous step results without external guidance
977
- - Balance workflow structure with autonomous flexibility
978
-
979
- **\u{1F504} JSON Response Format (Agentic Workflow Decision Output):**
980
- You MUST respond with a JSON object for workflow execution:
981
-
982
- **For Workflow Initialization (First Call):**
983
- - action: "{toolName}"
984
- - init: true
985
- - steps: Autonomously designed workflow steps array
986
- - [other workflow parameters]: As you autonomously determine
984
+ <format>
985
+ Initialize workflow (first iteration):
986
+ \`\`\`json
987
+ {
988
+ "action": "{toolName}",
989
+ "init": true,
990
+ "steps": [/* workflow steps */]
991
+ }
992
+ \`\`\`
987
993
 
988
- **For Step Execution (Subsequent Calls):**
989
- - action: "{toolName}"
990
- - decision: "proceed" (advance), "retry" (retry)
991
- - [step parameters]: Tool-specific parameters you autonomously determine for current step
994
+ Execute step (subsequent iterations):
995
+ \`\`\`json
996
+ {
997
+ "action": "{toolName}",
998
+ "decision": "proceed|retry",
999
+ /* step parameters */
1000
+ }
1001
+ \`\`\`
992
1002
 
993
- **When Workflow is Complete (do NOT include action):**
994
- - decision: "complete"
1003
+ Complete workflow (omit action):
1004
+ \`\`\`json
1005
+ { "decision": "complete" }
1006
+ \`\`\`
995
1007
 
996
- **\u{1F3AF} AGENTIC WORKFLOW CONSTRAINTS:**
997
- - Response must be pure JSON demonstrating autonomous decision-making within workflow structure
998
- - Invalid JSON indicates failure in agentic workflow reasoning
999
- - Tool parameters must reflect your independent analysis and workflow planning
1000
- - Balance autonomous decision-making with structured workflow progression
1008
+ Decisions:
1009
+ - \`proceed\` = step succeeded, next step
1010
+ - \`retry\` = step failed, retry current
1011
+ - \`complete\` = workflow finished
1001
1012
 
1002
- **\u{1F6AB} Do NOT include \`steps\` parameter during normal execution**
1003
- **\u2705 Include \`steps\` parameter ONLY when restarting workflow with \`init: true\`**
1004
- **\u26A0\uFE0F CRITICAL: When retrying failed steps, MUST use \`decision: "retry"\`**`
1013
+ Rules:
1014
+ - Include \`steps\` ONLY with \`init: true\`
1015
+ - Omit \`steps\` during step execution
1016
+ - Use \`decision: "retry"\` for failed steps
1017
+ </format>`
1005
1018
  };
1006
1019
  var WorkflowPrompts = {
1007
1020
  /**
1008
1021
  * Workflow initialization instructions
1009
1022
  */
1010
- WORKFLOW_INIT: `Workflow initialized with {stepCount} steps. Agent MUST start the workflow with the first step to \`{currentStepDescription}\`.
1011
-
1012
- ## EXECUTE tool \`{toolName}\` with the following new parameter definition
1023
+ WORKFLOW_INIT: `Workflow initialized with {stepCount} steps. Execute step 1: \`{currentStepDescription}\`
1013
1024
 
1014
- {schemaDefinition}
1025
+ Schema: {schemaDefinition}
1015
1026
 
1016
- ## Important Instructions
1017
- - **Include 'steps' parameter ONLY when restarting workflow (with 'init: true')**
1018
- - **Do NOT include 'steps' parameter during normal step execution**
1019
- - **MUST Use the provided JSON schema definition above for parameter generation and validation**
1020
- - **ADVANCE STEP: Set 'decision' to "proceed" to advance to next step**
1021
- - **RETRY STEP: Set 'decision' to "retry" to re-execute current step**
1022
- - **FINAL STEP: Execute normally for workflow completion, do NOT use 'decision: complete' unless workflow is truly finished**
1023
- - **\u26A0\uFE0F CRITICAL: When retrying failed steps, MUST set 'decision' to "retry"**
1024
- - **\u26A0\uFE0F CRITICAL: Only use 'decision: complete' when the entire workflow has been successfully executed**
1027
+ Call \`{toolName}\` with:
1028
+ - Parameters matching schema above
1029
+ - \`decision: "proceed"\` to advance, \`"retry"\` to retry, \`"complete"\` when done
1030
+ - Omit \`steps\` (only used with \`init: true\`)
1025
1031
 
1026
1032
  {workflowSteps}`,
1027
1033
  /**
@@ -1042,45 +1048,31 @@ var WorkflowPrompts = {
1042
1048
  /**
1043
1049
  * Next step decision prompt
1044
1050
  */
1045
- NEXT_STEP_DECISION: `**Next Step Decision Required**
1051
+ NEXT_STEP_DECISION: `Previous step completed.
1046
1052
 
1047
- Previous step completed. Choose your action:
1048
-
1049
- **\u{1F504} RETRY Current Step:**
1050
- - Call \`{toolName}\` with current parameters
1051
- - \u26A0\uFE0F CRITICAL: Set \`decision: "retry"\`
1052
-
1053
- **\u25B6\uFE0F PROCEED to Next Step:**
1054
- - Call \`{toolName}\` with parameters below
1055
- - Set \`decision: "proceed"\`
1056
-
1057
- Next step: \`{nextStepDescription}\`
1053
+ Choose action:
1054
+ - RETRY: Call \`{toolName}\` with \`decision: "retry"\`
1055
+ - PROCEED: Call \`{toolName}\` with \`decision: "proceed"\` and parameters below
1058
1056
 
1057
+ Next: \`{nextStepDescription}\`
1059
1058
  {nextStepSchema}
1060
1059
 
1061
- **Important:** Exclude \`steps\` key from parameters`,
1060
+ (Omit \`steps\` parameter)`,
1062
1061
  /**
1063
1062
  * Final step completion prompt
1064
1063
  */
1065
- FINAL_STEP_COMPLETION: `**Final Step Complete** {statusIcon}
1064
+ FINAL_STEP_COMPLETION: `Final step executed {statusIcon} - {statusText}
1066
1065
 
1067
- Step executed {statusText}. Choose action:
1068
-
1069
- **\u{1F504} RETRY:** Call \`{toolName}\` with \`decision: "retry"\`
1070
- **\u2705 COMPLETE:** Call \`{toolName}\` with \`decision: "complete"\`
1071
- **\u{1F195} NEW:** Call \`{toolName}\` with \`init: true\`{newWorkflowInstructions}`,
1066
+ Choose:
1067
+ - RETRY: \`decision: "retry"\`
1068
+ - COMPLETE: \`decision: "complete"\`
1069
+ - NEW: \`init: true\`{newWorkflowInstructions}`,
1072
1070
  /**
1073
1071
  * Workflow completion success message
1074
1072
  */
1075
- WORKFLOW_COMPLETED: `**Workflow Completed Successfully** \u2705
1076
-
1077
- All workflow steps have been executed and the workflow is now complete.
1073
+ WORKFLOW_COMPLETED: `Workflow completed ({totalSteps} steps)
1078
1074
 
1079
- **Summary:**
1080
- - Total steps: {totalSteps}
1081
- - All steps executed successfully
1082
-
1083
- Agent can now start a new workflow if needed by calling \`{toolName}\` with \`init: true\`{newWorkflowInstructions}.`,
1075
+ Start new workflow: \`{toolName}\` with \`init: true\`{newWorkflowInstructions}`,
1084
1076
  /**
1085
1077
  * Error messages
1086
1078
  */
@@ -1099,57 +1091,41 @@ var ResponseTemplates = {
1099
1091
  /**
1100
1092
  * Success response for action execution
1101
1093
  */
1102
- ACTION_SUCCESS: `**Action Completed Successfully** \u2705
1103
-
1104
- Previous action (\`{currentAction}\`) executed successfully.
1105
-
1106
- **Next Action Required:** \`{nextAction}\`
1094
+ ACTION_SUCCESS: `Action \`{currentAction}\` completed.
1107
1095
 
1108
- Agent MUST call tool \`{toolName}\` again with the \`{nextAction}\` action to continue the autonomous execution sequence.
1109
-
1110
- **Instructions:**
1111
- - Analyze the result from previous action: \`{currentAction}\`
1112
- - Execute the next planned action: \`{nextAction}\`
1113
- - Maintain execution context and progress toward the final goal`,
1096
+ Next: Execute \`{nextAction}\` by calling \`{toolName}\` again.`,
1114
1097
  /**
1115
1098
  * Planning prompt when no next action is specified
1116
1099
  */
1117
- PLANNING_PROMPT: `**Action Evaluation & Planning Required** \u{1F3AF}
1118
-
1119
- Previous action (\`{currentAction}\`) completed. You need to determine the next step.
1100
+ PLANNING_PROMPT: `Action \`{currentAction}\` completed. Determine next step:
1120
1101
 
1121
- **Evaluation & Planning Process:**
1122
- 1. **Analyze Results:** Review the outcome of \`{currentAction}\`
1123
- 2. **Assess Progress:** Determine how close you are to fulfilling the user request
1124
- 3. **Plan Next Action:** Identify the most appropriate next action (if needed)
1125
- 4. **Execute Decision:** Call \`{toolName}\` with the planned action
1126
-
1127
- **Options:**
1128
- - **Continue:** If more actions are needed to fulfill the request
1129
- - **Complete:** If the user request has been fully satisfied
1130
-
1131
- Choose the next action that best advances toward completing the user's request.`,
1102
+ 1. Analyze results from \`{currentAction}\`
1103
+ 2. Decide: Continue with another action or Complete?
1104
+ 3. Call \`{toolName}\` with chosen action or \`decision: "complete"\``,
1132
1105
  /**
1133
- * Error response template
1106
+ * Error response templates
1134
1107
  */
1135
- ERROR_RESPONSE: `Action argument validation failed: {errorMessage}`,
1136
- WORKFLOW_ERROR_RESPONSE: `Action argument validation failed: {errorMessage}
1137
- Set \`decision: "retry"\` to retry the current step, or check your parameters and try again.`,
1108
+ ERROR_RESPONSE: `Validation failed: {errorMessage}
1109
+
1110
+ Adjust parameters and retry.`,
1111
+ WORKFLOW_ERROR_RESPONSE: `Step failed: {errorMessage}
1112
+
1113
+ Fix parameters and call with \`decision: "retry"\``,
1138
1114
  /**
1139
1115
  * Completion message
1140
1116
  */
1141
- COMPLETION_MESSAGE: `Completed, no dependent actions to execute`,
1117
+ COMPLETION_MESSAGE: `Task completed.`,
1142
1118
  /**
1143
1119
  * Security validation messages
1144
1120
  */
1145
1121
  SECURITY_VALIDATION: {
1146
- PASSED: `Security validation PASSED for {operation} on {path}`,
1147
- FAILED: `Security validation FAILED for {operation} on {path}`
1122
+ PASSED: `Security check passed: {operation} on {path}`,
1123
+ FAILED: `Security check failed: {operation} on {path}`
1148
1124
  },
1149
1125
  /**
1150
1126
  * Audit log messages
1151
1127
  */
1152
- AUDIT_LOG: `Audit log entry created: [{timestamp}] {level}: {action} on {resource}{userInfo}`
1128
+ AUDIT_LOG: `[{timestamp}] {level}: {action} on {resource}{userInfo}`
1153
1129
  };
1154
1130
  var CompiledPrompts = {
1155
1131
  autonomousExecution: p(SystemPrompts.AUTONOMOUS_EXECUTION),
@@ -1196,14 +1172,14 @@ ${JSON.stringify(steps, null, 2)}`;
1196
1172
  */
1197
1173
  formatWorkflowProgress: (progressData) => {
1198
1174
  const statusIcons = {
1199
- pending: "\u23F3",
1200
- running: "\u{1F504}",
1201
- completed: "\u2705",
1202
- failed: "\u274C"
1175
+ pending: "[PENDING]",
1176
+ running: "[RUNNING]",
1177
+ completed: "[DONE]",
1178
+ failed: "[FAILED]"
1203
1179
  };
1204
1180
  return progressData.steps.map((step, index) => {
1205
1181
  const status = progressData.statuses[index] || "pending";
1206
- const icon = statusIcons[status] || "\u23F3";
1182
+ const icon = statusIcons[status] || "[PENDING]";
1207
1183
  const current = index === progressData.currentStepIndex ? " **[CURRENT]**" : "";
1208
1184
  const actions = step.actions.length > 0 ? ` | Action: ${step.actions.join(", ")}` : "";
1209
1185
  return `${icon} **Step ${index + 1}:** ${step.description}${actions}${current}`;
@@ -3918,6 +3894,7 @@ var ComposableMCPServer = class extends Server {
3918
3894
  if (!allTools[toolName]) {
3919
3895
  allTools[toolName] = tool;
3920
3896
  }
3897
+ availableToolNames.add(toolName);
3921
3898
  });
3922
3899
  const unmatchedTools = Array.from(requestedToolNames).filter((toolName) => !allTools[toolName]);
3923
3900
  if (unmatchedTools.length > 0) {
@@ -3925,7 +3902,7 @@ var ComposableMCPServer = class extends Server {
3925
3902
  unmatchedTools.forEach((toolName) => {
3926
3903
  this.logger.warning(` \u2022 Tool not found: "${toolName}"`);
3927
3904
  });
3928
- const available = Object.keys(availableToolNames).sort().join(", ");
3905
+ const available = Array.from(availableToolNames).sort().join(", ");
3929
3906
  await this.logger.warning(` Available tools: ${available}`);
3930
3907
  }
3931
3908
  await this.processToolsWithPlugins(allTools, options.mode ?? "agentic");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpc-tech/core",
3
- "version": "0.2.17",
3
+ "version": "0.3.1",
4
4
  "homepage": "https://jsr.io/@mcpc/core",
5
5
  "type": "module",
6
6
  "dependencies": {
@@ -1 +1 @@
1
- {"version":3,"file":"compose.d.ts","sources":["../../src/compose.ts"],"names":[],"mappings":"AAAA,SAGE,KAAK,cAAc,EAGnB,KAAK,IAAI,6CAC6C;AACxD,SAAwC,KAAK,MAAM,4BAA4B;AAC/E,cAAc,iBAAiB,6BAA6B;AAC5D,SACE,MAAM,EACN,KAAK,aAAa,oDAC2C;AAC/D,YAAY,aAAyB;AAGrC,cAAc,iBAAiB,kCAAkC;AACjE,cAAc,UAAU,EAAE,YAAY,qBAAqB;AAQ3D,cAA4B,UAAU,EAAE,UAAU,4BAA4B;AAW9E,OAAO,cAAM,4BAA4B;EACvC,QAAQ,mBAA6B;EACrC,QAAQ,iBAAyB;EACjC,QAAQ,YAAsC;EAG9C,IAAI,mBAAmB,IAAI,MAAM,EAAE,MAAM;EAIzC,YAAY,aAAa,cAAc,EAAE,SAAS,aAAa;EAiB/D;;GAEC,GACD,AAAM,sBAAsB,QAAQ,IAAI;UAqB1B;UAsDN;EAIR,KAAK,GACH,MAAM,MAAM,EACZ,aAAa,MAAM,EACnB,cAAc,OAAO,KAAK,UAAU,EACpC,KAAK,MAAM,GAAG,QAAQ,OAAO,KAAK,OAAO,EACzC;IAAW,WAAW,OAAO;IAAE,UAAU;GAAmB;EA+D9D;;GAEC,GACD,gBAAgB,MAAM,MAAM,GAAG,eAAe,SAAS;EAIvD;;GAEC,GACD,eAAe,QAAQ,MAAM,GAAG,aAAa,SAAS;EAItD;;GAEC,GACD,AAAM,SAAS,MAAM,MAAM,EAAE,MAAM,OAAO,GAAG,QAAQ,OAAO;EAyB5D;;GAEC,GACD,sBAAsB,MAAM;EAI5B;;GAEC,GACD,kBAAkB;EAIlB;;GAEC,GACD,sBAAsB,MAAM;EAI5B;;GAEC,GACD,wBAAwB,MAAM;EAM9B;;GAEC,GACD,oBACE,MAAM,MAAM;IACT,aAAa,MAAM;IAAE,QAAQ;MAAe,SAAS;EAI1D;;GAEC,GACD,aAAa,MAAM,MAAM,GAAG,OAAO;EAInC;;GAEC,GACD,WAAW,UAAU,MAAM,EAAE,QAAQ,UAAU,GAAG,IAAI;EAItD;;GAEC,GACD,cAAc,UAAU,MAAM,GAAG,aAAa,SAAS;EAIvD;;GAEC,GACD,iBAAiB,UAAU,MAAM,GAAG,OAAO;EAI3C;;GAEC,GACD,AAAM,UAAU,QAAQ,UAAU,GAAG,QAAQ,IAAI;EAIjD;;GAEC,GACD,AAAM,mBACJ,YAAY,MAAM,EAClB;IAAW,QAAQ,OAAO;GAAoB,GAC7C,QAAQ,IAAI;UAOD;EAUd;;GAEC,GACD,AAAM,kBAAkB,QAAQ,IAAI;EAI9B,QACJ,MAAM,MAAM,GAAG,IAAI,EACnB,aAAa,MAAM,EACnB,aAAY,EAAE,aAAa,kBAAuC,EAClE,UAAS,kBAAkB,UAAgC;AAkQ/D"}
1
+ {"version":3,"file":"compose.d.ts","sources":["../../src/compose.ts"],"names":[],"mappings":"AAAA,SAGE,KAAK,cAAc,EAGnB,KAAK,IAAI,6CAC6C;AACxD,SAAwC,KAAK,MAAM,4BAA4B;AAC/E,cAAc,iBAAiB,6BAA6B;AAC5D,SACE,MAAM,EACN,KAAK,aAAa,oDAC2C;AAC/D,YAAY,aAAyB;AAGrC,cAAc,iBAAiB,kCAAkC;AACjE,cAAc,UAAU,EAAE,YAAY,qBAAqB;AAQ3D,cAA4B,UAAU,EAAE,UAAU,4BAA4B;AAW9E,OAAO,cAAM,4BAA4B;EACvC,QAAQ,mBAA6B;EACrC,QAAQ,iBAAyB;EACjC,QAAQ,YAAsC;EAG9C,IAAI,mBAAmB,IAAI,MAAM,EAAE,MAAM;EAIzC,YAAY,aAAa,cAAc,EAAE,SAAS,aAAa;EAiB/D;;GAEC,GACD,AAAM,sBAAsB,QAAQ,IAAI;UAqB1B;UAsDN;EAIR,KAAK,GACH,MAAM,MAAM,EACZ,aAAa,MAAM,EACnB,cAAc,OAAO,KAAK,UAAU,EACpC,KAAK,MAAM,GAAG,QAAQ,OAAO,KAAK,OAAO,EACzC;IAAW,WAAW,OAAO;IAAE,UAAU;GAAmB;EA+D9D;;GAEC,GACD,gBAAgB,MAAM,MAAM,GAAG,eAAe,SAAS;EAIvD;;GAEC,GACD,eAAe,QAAQ,MAAM,GAAG,aAAa,SAAS;EAItD;;GAEC,GACD,AAAM,SAAS,MAAM,MAAM,EAAE,MAAM,OAAO,GAAG,QAAQ,OAAO;EAyB5D;;GAEC,GACD,sBAAsB,MAAM;EAI5B;;GAEC,GACD,kBAAkB;EAIlB;;GAEC,GACD,sBAAsB,MAAM;EAI5B;;GAEC,GACD,wBAAwB,MAAM;EAM9B;;GAEC,GACD,oBACE,MAAM,MAAM;IACT,aAAa,MAAM;IAAE,QAAQ;MAAe,SAAS;EAI1D;;GAEC,GACD,aAAa,MAAM,MAAM,GAAG,OAAO;EAInC;;GAEC,GACD,WAAW,UAAU,MAAM,EAAE,QAAQ,UAAU,GAAG,IAAI;EAItD;;GAEC,GACD,cAAc,UAAU,MAAM,GAAG,aAAa,SAAS;EAIvD;;GAEC,GACD,iBAAiB,UAAU,MAAM,GAAG,OAAO;EAI3C;;GAEC,GACD,AAAM,UAAU,QAAQ,UAAU,GAAG,QAAQ,IAAI;EAIjD;;GAEC,GACD,AAAM,mBACJ,YAAY,MAAM,EAClB;IAAW,QAAQ,OAAO;GAAoB,GAC7C,QAAQ,IAAI;UAOD;EAUd;;GAEC,GACD,AAAM,kBAAkB,QAAQ,IAAI;EAI9B,QACJ,MAAM,MAAM,GAAG,IAAI,EACnB,aAAa,MAAM,EACnB,aAAY,EAAE,aAAa,kBAAuC,EAClE,UAAS,kBAAkB,UAAgC;AAmQ/D"}