@hashgraphonline/standards-agent-kit 0.2.129 → 0.2.131

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hashgraphonline/standards-agent-kit",
3
- "version": "0.2.129",
3
+ "version": "0.2.131",
4
4
  "description": "A modular SDK for building on-chain autonomous agents using Hashgraph Online Standards, including HCS-10 for agent discovery and communication.",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/standards-agent-kit.cjs",
@@ -25,7 +25,7 @@ export class InscribeFromBufferTool extends BaseInscriberQueryTool<
25
25
  > {
26
26
  name = 'inscribeFromBuffer';
27
27
  description =
28
- 'Inscribe content that you have already retrieved or displayed as standard file inscription (NOT for hashinal NFTs - use InscribeHashinalTool for NFTs). When user says "inscribe it" after you showed search results or other content, use THIS tool. The base64Data field accepts PLAIN TEXT (not just base64) and content reference IDs in format "content-ref:[id]". Pass the EXACT content from your previous response or MCP tool output. DO NOT generate new content or create repetitive text. Content references are automatically resolved to the original content for inscription. Set quoteOnly=true to get cost estimates without executing the inscription.';
28
+ 'Use ONLY for inscribing regular files or content (NOT for NFT/Hashinal inscriptions). When user says "inscribe it" after you showed search results or other content WITHOUT mentioning NFT/hashinal, use THIS tool. The base64Data field accepts PLAIN TEXT (not just base64) and content reference IDs in format "content-ref:[id]". Pass the EXACT content from your previous response or MCP tool output. DO NOT generate new content or create repetitive text. Content references are automatically resolved to the original content for inscription. Set quoteOnly=true to get cost estimates without executing the inscription. NEVER use this for Hashinal NFTs - always use InscribeHashinalTool instead when user mentions hashinal, NFT, dynamic, or minting.';
29
29
 
30
30
  private config = loadConfig();
31
31
 
@@ -123,7 +123,7 @@ export class InscribeHashinalTool extends BaseInscriberQueryTool<
123
123
  > {
124
124
  name = 'inscribeHashinal';
125
125
  description =
126
- 'STEP 1: Inscribe content as Hashinal NFT. This tool creates the inscription and returns metadataForMinting (HRL format). CRITICAL: You MUST use the metadataForMinting field from this tool output as the metadata parameter when calling mint NFT tools. DO NOT use the original content reference for minting. This tool only inscribes - call minting tools separately after this completes. Use fileStandard=6 for dynamic Hashinals (HCS-6) or fileStandard=1 for static Hashinals (HCS-5).';
126
+ 'Use this tool when user wants to inscribe content as a Hashinal for NFT minting (includes keywords: hashinal, dynamic hashinal, static hashinal, NFT inscription, mint). STEP 1: Inscribe content as Hashinal NFT. This tool creates the inscription and returns metadataForMinting (HRL format). CRITICAL: You MUST use the metadataForMinting field from this tool output as the metadata parameter when calling mint NFT tools. DO NOT use the original content reference for minting. This tool only inscribes - call minting tools separately after this completes. IMPORTANT: Set fileStandard="6" for dynamic Hashinals (when user says "dynamic") or fileStandard="1" for static Hashinals (default). Accepts base64Data, contentRef, or URL.';
127
127
 
128
128
  get specificInputSchema() {
129
129
  return inscribeHashinalSchema;
@@ -177,8 +177,8 @@ export class InscribeHashinalTool extends BaseInscriberQueryTool<
177
177
  waitForConfirmation: params.quoteOnly
178
178
  ? false
179
179
  : params.waitForConfirmation ?? true,
180
- waitMaxAttempts: 10,
181
- waitIntervalMs: 3000,
180
+ waitMaxAttempts: 30,
181
+ waitIntervalMs: 5000,
182
182
  apiKey: params.apiKey,
183
183
  network: this.inscriberBuilder['hederaKit'].client.network
184
184
  .toString()