Skip to content

Version Packages#1896

Merged
robert-inkeep merged 1 commit intomainfrom
changeset-release/main
Feb 13, 2026
Merged

Version Packages#1896
robert-inkeep merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented Feb 10, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@inkeep/[email protected]

Minor Changes

  • b2a6078: ## Agent Skills

    Skills are reusable instruction blocks that can be attached to sub-agents to govern behavior, reasoning, and tool usage.

    Features

    • Visual Builder: Create, edit, and delete skills from the new Skills page. Attach skills to sub-agents via the sidepane picker with drag-to-reorder support.

    • TypeScript SDK:

      • New SkillDefinition and SkillReference types
      • loadSkills(directoryPath) helper to load skills from SKILL.md files
      • skills config option on SubAgent and Project
    • API: New CRUD endpoints for skills (/skills) and sub-agent skill associations (/sub-agent-skills)

    • CLI: inkeep pull now generates skill files in the skills/ directory

    Loading Modes

    • Always loaded: Skill content is included in every prompt
    • On-demand: Skill appears as an outline in the system prompt and can be loaded via the built-in load_skill tool when needed

    SKILL.md Format

    ---
    name: "my-skill"
    description: "When to use this skill"
    metadata:
      author: org
      version: "1.0"
    ---
    
    Skill content in markdown...

Patch Changes

  • 87270d9: Added tool call id to tool call results
  • f981006: Unwrap generic Vercel AI SDK errors (e.g., "fetch failed") to surface root cause in logs and traces
  • 0fd8b63: Add error logging to trigger execution paths and update invocation status to 'failed' on errors
  • e11fae9: Fix props field type in data components to be non-null and improve type safety with JsonSchemaForLlmSchemaType
  • 7cb0d54: Normalize JSON schemas for OpenAI structured output compatibility
  • 80152a1: Fix internal A2A and self-referencing calls to use in-process fetch transport instead of network loopback, ensuring same-instance execution for features relying on process-local state like SSE stream registries
  • 7ad7e21: Refactor artifact and data component validation to use centralized Zod schemas from agents-core. This eliminates duplicate validation logic and improves consistency across the codebase.
  • aee6362: Fix missing OpenTelemetry spans in Vercel serverless streaming responses
  • 6922f83: Add SpiceDB authorization sync for project create and delete operations
  • 95a3abc: Add scheduled/cron trigger support across the full stack — database schema, API routes, Manage UI
  • Updated dependencies [f981006]
  • Updated dependencies [e11fae9]
  • Updated dependencies [7417653]
  • Updated dependencies [94fcd60]
  • Updated dependencies [228d4e2]
  • Updated dependencies [7ad7e21]
  • Updated dependencies [2521fcf]
  • Updated dependencies [95a3abc]
  • Updated dependencies [b2a6078]

@inkeep/[email protected]

Minor Changes

  • b2a6078: ## Agent Skills

    Skills are reusable instruction blocks that can be attached to sub-agents to govern behavior, reasoning, and tool usage.

    Features

    • Visual Builder: Create, edit, and delete skills from the new Skills page. Attach skills to sub-agents via the sidepane picker with drag-to-reorder support.

    • TypeScript SDK:

      • New SkillDefinition and SkillReference types
      • loadSkills(directoryPath) helper to load skills from SKILL.md files
      • skills config option on SubAgent and Project
    • API: New CRUD endpoints for skills (/skills) and sub-agent skill associations (/sub-agent-skills)

    • CLI: inkeep pull now generates skill files in the skills/ directory

    Loading Modes

    • Always loaded: Skill content is included in every prompt
    • On-demand: Skill appears as an outline in the system prompt and can be loaded via the built-in load_skill tool when needed

    SKILL.md Format

    ---
    name: "my-skill"
    description: "When to use this skill"
    metadata:
      author: org
      version: "1.0"
    ---
    
    Skill content in markdown...

Patch Changes

@inkeep/[email protected]

Minor Changes

  • b2a6078: ## Agent Skills

    Skills are reusable instruction blocks that can be attached to sub-agents to govern behavior, reasoning, and tool usage.

    Features

    • Visual Builder: Create, edit, and delete skills from the new Skills page. Attach skills to sub-agents via the sidepane picker with drag-to-reorder support.

    • TypeScript SDK:

      • New SkillDefinition and SkillReference types
      • loadSkills(directoryPath) helper to load skills from SKILL.md files
      • skills config option on SubAgent and Project
    • API: New CRUD endpoints for skills (/skills) and sub-agent skill associations (/sub-agent-skills)

    • CLI: inkeep pull now generates skill files in the skills/ directory

    Loading Modes

    • Always loaded: Skill content is included in every prompt
    • On-demand: Skill appears as an outline in the system prompt and can be loaded via the built-in load_skill tool when needed

    SKILL.md Format

    ---
    name: "my-skill"
    description: "When to use this skill"
    metadata:
      author: org
      version: "1.0"
    ---
    
    Skill content in markdown...

Patch Changes

  • e11fae9: Fix props field type in data components to be non-null and improve type safety with JsonSchemaForLlmSchemaType

  • 26b3b88: Fix existingRender prop reference in ComponentRenderGenerator to use defaultValues instead of static initialData

  • 615713f: Fix fullscreen editor dialog styling and improve ExpandableField layout

  • e551124: Make ExpandablePromptEditor work on markdown files without the "Add variables" action button. The component now supports both template files (showing the variables button) and regular markdown files (without the button), enabling it to be used as a general-purpose markdown editor.

  • 5d3f136: Add GenericJsonEditor and GenericPromptEditor components with react-hook-form integration

  • 5b0b1f1: fix max height for card content on traces conversation page

  • 228d4e2: Fix nested error message display in form validation

    • Add firstNestedMessage helper to recursively extract error messages from nested Zod validation objects
    • Display error path location (e.g., → at ["foo", "bar"]) for deeply nested validation errors
    • Refactor createCustomHeadersSchema to use Zod .pipe() for cleaner error path propagation
    • Rename HeadersSchema to StringRecordSchema for broader applicability
  • c0c922b: fixed azure model selector

  • 627df66: Fix layout styling in GenericPromptEditor and GenericJsonEditor components

  • 9ed110c: Add --ui flag to CLI add command for downloading UI components from the dashboard

  • 7ad7e21: Refactor artifact and data component validation to use centralized Zod schemas from agents-core. This eliminates duplicate validation logic and improves consistency across the codebase.

  • 4476af0: performance improvements traces

  • 73d79bd: local time for traces, end date when agent is done running

  • 0bf078c: Render function execute code using the CodeDiff component instead of TextDiff

  • 95a3abc: Add scheduled/cron trigger support across the full stack — database schema, API routes, Manage UI

  • 32bff8f: Warn when trying to connect already connected MCP tools and show 'No tools' instead of '0' badge

  • Updated dependencies [f981006]

  • Updated dependencies [e11fae9]

  • Updated dependencies [228d4e2]

  • Updated dependencies [7ad7e21]

  • Updated dependencies [95a3abc]

  • Updated dependencies [b2a6078]

@inkeep/[email protected]

Minor Changes

  • b2a6078: ## Agent Skills

    Skills are reusable instruction blocks that can be attached to sub-agents to govern behavior, reasoning, and tool usage.

    Features

    • Visual Builder: Create, edit, and delete skills from the new Skills page. Attach skills to sub-agents via the sidepane picker with drag-to-reorder support.

    • TypeScript SDK:

      • New SkillDefinition and SkillReference types
      • loadSkills(directoryPath) helper to load skills from SKILL.md files
      • skills config option on SubAgent and Project
    • API: New CRUD endpoints for skills (/skills) and sub-agent skill associations (/sub-agent-skills)

    • CLI: inkeep pull now generates skill files in the skills/ directory

    Loading Modes

    • Always loaded: Skill content is included in every prompt
    • On-demand: Skill appears as an outline in the system prompt and can be loaded via the built-in load_skill tool when needed

    SKILL.md Format

    ---
    name: "my-skill"
    description: "When to use this skill"
    metadata:
      author: org
      version: "1.0"
    ---
    
    Skill content in markdown...

Patch Changes

  • f981006: Unwrap generic Vercel AI SDK errors (e.g., "fetch failed") to surface root cause in logs and traces

  • e11fae9: Fix props field type in data components to be non-null and improve type safety with JsonSchemaForLlmSchemaType

  • 228d4e2: Fix nested error message display in form validation

    • Add firstNestedMessage helper to recursively extract error messages from nested Zod validation objects
    • Display error path location (e.g., → at ["foo", "bar"]) for deeply nested validation errors
    • Refactor createCustomHeadersSchema to use Zod .pipe() for cleaner error path propagation
    • Rename HeadersSchema to StringRecordSchema for broader applicability
  • 7ad7e21: Refactor artifact and data component validation to use centralized Zod schemas from agents-core. This eliminates duplicate validation logic and improves consistency across the codebase.

  • 95a3abc: Add scheduled/cron trigger support across the full stack — database schema, API routes, Manage UI

@inkeep/[email protected]

Minor Changes

  • b2a6078: ## Agent Skills

    Skills are reusable instruction blocks that can be attached to sub-agents to govern behavior, reasoning, and tool usage.

    Features

    • Visual Builder: Create, edit, and delete skills from the new Skills page. Attach skills to sub-agents via the sidepane picker with drag-to-reorder support.

    • TypeScript SDK:

      • New SkillDefinition and SkillReference types
      • loadSkills(directoryPath) helper to load skills from SKILL.md files
      • skills config option on SubAgent and Project
    • API: New CRUD endpoints for skills (/skills) and sub-agent skill associations (/sub-agent-skills)

    • CLI: inkeep pull now generates skill files in the skills/ directory

    Loading Modes

    • Always loaded: Skill content is included in every prompt
    • On-demand: Skill appears as an outline in the system prompt and can be loaded via the built-in load_skill tool when needed

    SKILL.md Format

    ---
    name: "my-skill"
    description: "When to use this skill"
    metadata:
      author: org
      version: "1.0"
    ---
    
    Skill content in markdown...

Patch Changes

  • e11fae9: Fix props field type in data components to be non-null and improve type safety with JsonSchemaForLlmSchemaType
  • 95a3abc: Add scheduled/cron trigger support across the full stack — database schema, API routes, Manage UI
  • Updated dependencies [f981006]
  • Updated dependencies [e11fae9]
  • Updated dependencies [228d4e2]
  • Updated dependencies [7ad7e21]
  • Updated dependencies [95a3abc]
  • Updated dependencies [b2a6078]

@inkeep/[email protected]

Patch Changes

@inkeep/[email protected]

Patch Changes

@inkeep/[email protected]

Patch Changes

@inkeep/[email protected]

@inkeep/[email protected]

@vercel
Copy link
Copy Markdown

vercel Bot commented Feb 10, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
agents-api Ready Ready Preview, Comment Feb 13, 2026 9:38pm
agents-docs Ready Ready Preview, Comment Feb 13, 2026 9:38pm
agents-manage-ui Ready Ready Preview, Comment Feb 13, 2026 9:38pm

Request Review

@github-actions github-actions Bot force-pushed the changeset-release/main branch from fe1b41b to b910be0 Compare February 10, 2026 14:53
@github-actions github-actions Bot force-pushed the changeset-release/main branch from b910be0 to 6dc253b Compare February 10, 2026 14:58
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 6dc253b to 76320fd Compare February 10, 2026 17:56
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 76320fd to 2f05172 Compare February 10, 2026 18:26
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 2f05172 to 4b1b4f2 Compare February 10, 2026 18:56
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 4b1b4f2 to 6865a0a Compare February 10, 2026 19:28
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 6865a0a to 7b87bcd Compare February 10, 2026 23:03
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 66a200b to 06c07be Compare February 11, 2026 17:00
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 06c07be to 6f869d7 Compare February 11, 2026 17:25
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 6f869d7 to 98798f1 Compare February 11, 2026 19:17
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 98798f1 to 1591c24 Compare February 11, 2026 21:31
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 1591c24 to dec8cd1 Compare February 11, 2026 22:09
@github-actions github-actions Bot force-pushed the changeset-release/main branch from dec8cd1 to 54567d4 Compare February 11, 2026 22:53
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 54567d4 to 980e758 Compare February 11, 2026 23:28
@github-actions
Copy link
Copy Markdown
Contributor Author

🔎💬 Inkeep AI search and chat service is syncing content for source 'Inkeep Agent Framework Docs'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant