@smartytalent/mcp-tools 0.1.33-dev.60 → 0.1.33-dev.61

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.
Files changed (2) hide show
  1. package/dist/tools.json +5 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -15518,14 +15518,16 @@
15518
15518
  "role": {
15519
15519
  "type": "string",
15520
15520
  "enum": [
15521
- "interviewer"
15521
+ "interviewer",
15522
+ "notetaker",
15523
+ "sales"
15522
15524
  ],
15523
- "description": "Picks a system prompt template from the bot container's\nprompt/<role>.md library. 'interviewer' drives a structured\nscreening conversation. Omit (or pass empty) for the generic\nsilent-listening assistant prompt - back-compat default.\nMore roles (notetaker, sales) will be added as the library\ngrows."
15525
+ "description": "Picks a system prompt template from the bot container's\nprompt/<role>.md library.\n'interviewer' drives a structured screening conversation\n with a candidate (compliance, behavioral block, etc.).\n'notetaker' silently observes and captures action items,\n decisions, and open questions; speaks only when addressed.\n'sales' runs a discovery + pitch conversation with a\n prospect, advances toward a concrete next step. No\n commercial commitments on the call.\nOmit (or pass empty) for the generic silent-listening\nassistant prompt - back-compat default."
15524
15526
  },
15525
15527
  "context": {
15526
15528
  "type": "object",
15527
15529
  "additionalProperties": true,
15528
- "description": "Per-meeting context values used to fill {placeholder} tokens\nin the chosen role's prompt template. Required keys depend\non the role - the prompt itself documents what it expects.\nMissing or empty values are substituted with the literal\nstring \"not provided\"; the prompt is written to handle that\ngracefully (\"do NOT make up missing fields\"). Example for\nrole=interviewer: { companyName, roleName, language,\nduration, mustHaves, competencies, ... }."
15530
+ "description": "Per-meeting context values used to fill {placeholder} tokens\nin the chosen role's prompt template. The required keys depend\non the role - the prompt itself documents what it expects.\n\nBE-side enrichment: for role=interviewer, supplying just\n`{ \"jobId\": \"...\" }` causes the BE to fetch the job row and\nauto-populate roleName, roleDescription, mustHaves,\ncompetencies, workLocation, workMode, workHours, salaryRange,\nroleDetailShareable, and companyInfoShareable from it. Any\nadditional keys you supply override the assembled values\n(FE wins on conflicts). Use this to inject recruiterNotes,\nnextStepsShareable, expectedTimeline, and any field you want\nto override.\n\nMissing or empty values are substituted with the literal\nstring \"not provided\"; the prompt is written to handle that\ngracefully (\"do NOT make up missing fields\"). Each string\nvalue is capped at 1500 chars - the BE truncates and logs\na warning if exceeded (ECS RunTask containerOverrides has\nan 8KB total limit across all env vars)."
15529
15531
  }
15530
15532
  }
15531
15533
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.60",
3
+ "version": "0.1.33-dev.61",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",