chore: version packages#15
Merged
Merged
Conversation
001c0b2 to
f6c3e0d
Compare
f6c3e0d to
85b6f08
Compare
10 tasks
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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
@gemstack/ai-autopilot@0.1.0
Minor Changes
8796ae4: Initial release. Orchestration for
@gemstack/ai-sdkagents — the control-policy layer over many agent runs. Seed slice: the supervisor/worker topology.Supervisor— plan → dispatch → synthesize: decompose a task into subtasks, dispatch each to a worker agent (bounded concurrency, optional token budget, per-subtask error isolation), and synthesize the results.agentPlanner(agent)— turn a planning agent into aPlannerviaai-sdk'sOutput.array(JSON subtask decomposition).agentSynthesizer(agent)/defaultSynthesize— combine subtask results (LLM pass, or deterministic concatenation).plan/workers/synthesize), guardrails (concurrency,maxSubtasks,budget.maxTotalTokens), and progress events.Scope boundary:
ai-sdkowns the single-agent loop + handoff/subagent primitives;ai-autopilotowns orchestrating multiple runs under a policy. The seed runs autonomous workers; durable pause/resume, more topologies, and queue-backed execution are deferred behind optional seams. Depends on@gemstack/ai-sdk.Patch Changes
@gemstack/ai-mcp@0.1.0
Minor Changes
9da9b29: Initial release. The agent<->MCP bridge, carved out of
@gemstack/ai-sdk's former./mcpsubpath:mcpClientTools(transport, opts?)— consume a remote MCP server's tools as@gemstack/ai-sdkAgent tools (HTTP URL / stdio spawn / connected SDK client).mcpServerFromAgent(AgentClass, opts?)— expose an Agent as an MCP server, with'tools'/'agent'/'both'exposure modes.Depends on
@gemstack/ai-sdk;@modelcontextprotocol/sdkis an optional peer.Patch Changes
@gemstack/ai-sdk@0.3.0
Minor Changes
9da9b29: Remove the
./mcpsubpath. The agent<->MCP bridge (mcpClientTools/mcpServerFromAgent) has moved to its own package,@gemstack/ai-mcp, so the optional@modelcontextprotocol/sdkpeer dependency is now declared only by the package that uses it (and no longer surfaces to every@gemstack/ai-sdkconsumer).Migration: replace
@gemstack/ai-sdk/mcpimports with@gemstack/ai-mcp, and move the@modelcontextprotocol/sdkpeer to that package. The bridge API is unchanged.@gemstack/ai-skills@0.1.0
Minor Changes
c9758d0: Initial release. Portable capability bundles for
@gemstack/ai-sdkagents — loadSKILL.mdskills (instructions + tools + resources) and compose them onto anAgent:parseSkillManifest— parseSKILL.mdYAML frontmatter + markdown body (matches theboost/skills/ Anthropic Agent Skills shape).loadSkill/loadSkills— load a skill directory: instructions, co-locatedtool()exports, andresources/.SkillRegistry— discover skills by their cheap frontmatter and load the full body + tools on demand (progressive disclosure).composeInstructions/composeTools/composeMiddleware— merge skills into an agent; the agent's own declarations stay authoritative (own tools win name collisions, skill tools are namespaced as a backstop).SkillfulAgent— anAgentbase that composesskills()declaratively alongsidebaseInstructions()/baseTools().surface— inspect a skill's instructions/tools/resources before composing it.Explicit trust boundary (no in-process sandbox): discovery reads only frontmatter,
loadTools: falseloads without running the tools module, and skill tools flow through the agent's existing approval/middleware path. Depends on@gemstack/ai-sdk.Patch Changes