@meetopenbot/claude-code 0.1.4 → 0.1.5
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/dist/index.js +5 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19673,6 +19673,11 @@ var claudeCodeRuntime = (options = {}) => (builder) => {
|
|
|
19673
19673
|
const emittedToolCallIds = /* @__PURE__ */ new Set();
|
|
19674
19674
|
const emittedToolResultIds = /* @__PURE__ */ new Set();
|
|
19675
19675
|
const toolTitleByUseId = /* @__PURE__ */ new Map();
|
|
19676
|
+
yield agentOutput({
|
|
19677
|
+
agentId: context.state.agentId,
|
|
19678
|
+
threadId,
|
|
19679
|
+
content: "Claude is starting..."
|
|
19680
|
+
});
|
|
19676
19681
|
for await (const message of QA$({ prompt: userContent, options: sdkOptions })) {
|
|
19677
19682
|
if ("session_id" in message && typeof message.session_id === "string") {
|
|
19678
19683
|
lastSessionId = message.session_id;
|