Heads up This site is currently under heavy development.
Subscribe Get it delivered — the daily firehose, filtered to the tools you run, plus the documentation changes vendors never announce. Compare plans →

The AI Toolchain — issue -098, May 13, 2026

THE AI TOOLCHAIN NO. -098
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED MAY 13, 2026 · EVERY WEEKDAY
EDITIONS tail grep head diff uniq

The daily firehose — everything the toolchain shipped today, already filtered.

// HOW THIS ISSUE IS MADE

We read every release from the 174 tools on our watchlist at the source — GitHub and GitLab release notes, vendor release pages and changelogs, project blogs and feeds, vendor press releases, and the source code behind the tag. Bug-fix-only releases and non-product newsroom noise are dropped; what's left is summarized down to the new capability, how to try it, and any screenshots or videos the release itself published. Every entry links to the sources it was built from.

VIEW
ISSUE VIEW full issue
Do you prefer this view?
$ tct list   # 15 tools matched
AI & LLM Tooling
◆  AI Agent Frameworks

AutoGPT

Sources Release notes → autogpt-platform-beta-v0.6.60 NOTES

AutoGPT Platform adds Slack and Discord blocks, Markdown chat export, AutoPilot task queue, and smarter workflow triggers.

└──▷ GET THIS VERSION
$ git clone --branch autogpt-platform-beta-v0.6.60 https://github.com/Significant-Gravitas/AutoGPT.git
# already have the repo? check out this version:
$ git checkout autogpt-platform-beta-v0.6.60
  • Adds Export Chat as Markdown option to the session menu for saving agent conversations.
  • Adds SendSlackMessageBlock for direct Slack message integration within agent workflows.
  • Adds smart Discord thread support with a setup-link button, human mentions, and bot-to-bot communication.
  • Introduces AutoPilot task queue capped at 5 running and 15 in-flight tasks per user for resource management.
  • Adds 'Trigger On Anything' mode for enhanced flexibility in workflow trigger configuration.
+6 moreshow less
  • Seeds dynamic-cost block preflight estimates from 30-day historical production usage averages for more accurate cost projection.
  • Auto-opens the artifact panel when an agent creates a new artifact.
  • Enables auto-rerouting of OpenAI models through OpenRouter when configured.
  • Enables Stripe automatic tax on checkout sessions.
  • Redesigns the publish agent flow modal and creator dashboard edit modal.
  • Surfaces 15% yearly savings in the switch-to-yearly modal and defaults onboarding pricing to yearly with monthly-equivalent and charged-today display.
Was this useful?

PydanticAI

Sources Release notes → v1.95.0 NOTES

PydanticAI v1.95.0 adds native Tool Search on Anthropic/OpenAI, an Instrumentation capability class, and Gemini 3 structured-output + tool combinations.

└──▷ GET THIS VERSION
$ git clone --branch v1.95.0 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v1.95.0
└──▷ USE IT
Register a native tool and instrumentation together using the new capabilities= API instead of deprecated per-argument options.
python
agent = Agent(
    'openai:gpt-4o',
    capabilities=[NativeTool(...), Instrumentation(...)]
)
  • Adds native Tool Search support for Anthropic and OpenAI providers, with custom search strategies available on any provider.
  • Introduces the Instrumentation capability class; the existing Agent(instrument=...) parameter is now deprecated in favour of capabilities=[Instrumentation(...)].
  • Renames 'built-in tools' to 'native tools'; native tools are now registered via capabilities=[NativeTool(...)]; old fields are deprecated ahead of v2.
  • Adds local= opt-in parameter for provider-adaptive capability fallback; auto-fallback is deprecated.
  • Supports combining structured output and tool use together for Gemini 3 models via the Google provider.
Was this useful?
◆  AI Coding Agents

Anthropic Claude Code

Sources Release notes → v2.1.141 NOTES

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

Claude Code v2.1.141 adds terminalSequence hooks, HTTPS plugin cloning, workspace identity scoping, and richer agent/rewind controls.

└──▷ GET THIS VERSION
$ git clone --branch v2.1.141 https://github.com/anthropics/claude-code.git
# already have the repo? check out this version:
$ git checkout v2.1.141
└──▷ TRY IT
Trigger a desktop notification from a hook after a long-running task completes, without needing a controlling terminal.
$ # In your hook script, emit a bell via terminalSequence:
echo '{"terminalSequence": "\a"}'
Install a Claude Code plugin in a CI/CD environment that lacks a GitHub SSH key.
$ CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1 claude plugin install <plugin-name>
List only agents scoped to the current project directory, filtering out unrelated sessions.
$ claude agents --cwd /path/to/project
  • Adds terminalSequence field to hook JSON output, enabling hooks to emit desktop notifications, window titles, and bells without a controlling terminal.
  • Adds CLAUDE_CODE_PLUGIN_PREFER_HTTPS env var to clone GitHub plugin sources over HTTPS instead of SSH, for environments without a GitHub SSH key.
  • Adds ANTHROPIC_WORKSPACE_ID env var for workload identity federation, scoping minted tokens to a specific workspace when a federation rule covers more than one.
  • Adds claude agents --cwd <path> to scope the session list to a specific directory.
  • Extends /feedback to optionally include sessions from the last 24 hours or 7 days, covering issues that span multiple sessions.
+5 moreshow less
  • Adds 'Summarize up to here' option in the Rewind menu to compress earlier context while keeping recent turns intact.
  • Background agents launched via /bg or ←← now preserve the current permission mode instead of reverting to default.
  • Auto mode permission dialog now explains when a permissions.ask rule triggered the prompt.
  • Spinner now warms to amber after 10 seconds of thinking to signal Claude is still working.
  • Improves plugin menu navigation: /Tab switch tabs, moves to the tab strip, and tab headers and search box are clickable in fullscreen mode.
Was this useful?

GitHub Copilot CLI

Sources Release notes → v1.0.47 NOTES

GitHub Copilot CLI v1.0.47 adds named fork sessions, j/k navigation in /diff, and improved --resume for cloud agent sessions.

└──▷ GET THIS VERSION
$ git clone --branch v1.0.47 https://github.com/github/copilot-cli.git
# already have the repo? check out this version:
$ git checkout v1.0.47
  • The /fork command now accepts an optional name, and forked sessions display their origin in the sessions dialog.
  • The --resume flag now supports Copilot cloud agent sessions where the agent hasn't pushed any changes to its branch.
  • The /diff view now supports j/k keys for up/down navigation.
  • Copilot Max subscribers now see only the models available to their subscription tier.
Was this useful?

Block Goose

Sources Release notes → v1.34.0 NOTES

an open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM

Goose v1.34.0 adds hooks, agent CRUD, project-based system prompts, a TUI binary, and Linux Vulkan local inference.

└──▷ GET THIS VERSION
$ git clone --branch v1.34.0 https://github.com/block/goose.git
# already have the repo? check out this version:
$ git checkout v1.34.0
  • Adds hooks support for customizable agent behavior at runtime.
  • Adds CRUD operations for managing agents via ACP.
  • Enables projects as backend sources with system prompt injection into sessions.
  • Supports auto-updating for plugins installed to ~/.agents/plugins.
  • Adds Linux Vulkan support for local inference workloads.
+12 moreshow less
  • Achieves ACP streamable HTTP spec compliance.
  • Exposes built-in skills through the ACP sources list.
  • Introduces a provider-first onboarding flow for new users.
  • Introduces configurable Ollama host in goose2.
  • Adds Google model inventory refresh support.
  • Adds skills picker directly in the chat composer.
  • Supports mergeable configs for layered configuration management.
  • Adds MCP Apps payload hydration and replay in goose2.
  • Translates ACP host capabilities into MCP initialization for MCP Apps.
  • Releases Windows CUDA build artifacts for local inference on Windows.
  • Introduces the goose-tui binary as a standalone terminal UI.
  • Groups consecutive tool calls into a single summarized chain card in the UI.
Was this useful?

SST OpenCode

Sources Release notes → v1.14.49 NOTES

The open source coding agent.

OpenCode v1.14.49 adds DigitalOcean OAuth/Inference Router, a v2 model/provider API, pinned sessions, and prompt @mention autocomplete.

└──▷ GET THIS VERSION
$ git clone --branch v1.14.49 https://github.com/sst/opencode.git
# already have the repo? check out this version:
$ git checkout v1.14.49
  • Adds DigitalOcean OAuth and Inference Router as a supported provider.
  • Introduces a v2 model and provider listing API.
  • Automatically creates a global opencode.jsonc config when none exists.
  • Enables customize-opencode by default with a linked full schema.
  • Adds autocomplete for configured @mentions in prompts.
+3 moreshow less
  • Adds pinned recent sessions, quick slots, and recent-session cycling in the TUI.
  • Adds Ctrl/Cmd+number keyboard shortcuts to switch between projects in the desktop app.
  • Desktop app now remembers whether the todo dock is collapsed.
Was this useful?

Alibaba Qwen Code

Sources Release notes → v0.15.11 NOTES

Qwen Code v0.15.11 adds structured headless output, codegraph PR risk analysis, runtime session sidecars, and standalone archive installs.

└──▷ GET THIS VERSION
$ git clone --branch v0.15.11 https://github.com/QwenLM/qwen-code.git
# already have the repo? check out this version:
$ git checkout v0.15.11
└──▷ TRY IT
Force structured JSON output in a non-interactive CI pipeline by constraining the model response to a schema.
$ qwen --headless --json-schema '{"type":"object","properties":{"severity":{"type":"string"},"summary":{"type":"string"}},"required":["severity","summary"]}' 'Review the following diff for security issues: ...'
Disable tool search for a prefix-caching model to avoid cache invalidation caused by dynamic tool lists.
yaml
# In your Qwen Code settings file
# tools.toolSearch.enabled: false
  • Adds --json-schema flag to headless mode for structured JSON output constrained to a user-supplied schema.
  • Adds tools.toolSearch.enabled setting to control tool-search behavior for prefix-caching models.
  • Adds DASHSCOPE_PROXY_BASE_URL environment variable to route DashScope prompt-cache requests through an API gateway.
  • Writes a runtime.json sidecar file for active sessions, exposing live session metadata on disk.
  • Injects traceId and spanId into debug log files for OpenTelemetry (OTel) correlation.
+10 moreshow less
  • Adds hierarchical session tracing spans to telemetry.
  • Adds a codegraph skill for PR review risk analysis and merge-conflict detection.
  • Adds standalone archive installation path for environments where npm install is unavailable.
  • Adds Ctrl+B keybind to promote context in the CLI.
  • Replaces the internal fdir crawler with git ls-files (with ripgrep fallback) for faster, git-aware file enumeration.
  • Defers low-frequency built-in tools at startup to reduce initial prompt token size.
  • Keeps ask_user_question tool always visible in the tool list to surface clarification UX.
  • Improves Anthropic proxy compatibility and enables global prompt cache scope.
  • Bounds session-list metadata reads to head/tail 64 KB with pooled buffers and lazy message counts, enabling usable performance on very large session histories.
  • Expands core built-in i18n (internationalization) coverage in the CLI.
└──▷ BREAKING ON UPGRADE
  • !The qwen auth CLI subcommand is removed; authentication is now handled exclusively through the /auth TUI dialog.
  • !The useCollector telemetry setting and TelemetryTarget.QWEN target are removed; configs referencing them will silently lose those values.
Was this useful?

Zed

Sources Release notes → v1.2.3 NOTES

Zed v1.2.3 adds Git Graph remote support, MCP 2025-11-25, new editor actions, and path pasting in the terminal.

└──▷ GET THIS VERSION
$ git clone --branch v1.2.3 https://github.com/zed-industries/zed.git
# already have the repo? check out this version:
$ git checkout v1.2.3
└──▷ USE IT
Lock the cursor's vertical position in the viewport when jumping to definitions — useful in large files where spatial context matters.
json
// In settings.json
{
  "go_to_definition_scroll_strategy": "preserve"
}
Quickly base64-encode selected text (e.g. a secret or token) without leaving the editor.
📍Open the command palette with Cmd+Shift+P (macOS) or Ctrl+Shift+P (Linux/Windows), then run: editor: convert to base64
  • Adds git::ToggleFillCommitEditor action to expand the commit editor to fill the git panel's available vertical space.
  • Adds a new preserve option to go_to_definition_scroll_strategy that keeps the cursor at the same vertical position within the viewport when navigating to a definition.
  • Adds editor: convert to base64 and editor: convert from base64 commands to the command palette.
  • Adds support for MCP version 2025-11-25.
  • Git Graph: Adds remote support, enabling visualization of remote branches in the graph.
+15 moreshow less
  • Git Graph: Adds a context menu to graph rows.
  • Adds View History to folder and project-root context menus in the project panel, opening Git history for the selected folder or the whole project.
  • Adds running agent version display in the External Agent settings (ACP).
  • Adds Mistral Ministral 3 models.
  • Adds path pasting functionality in the terminal.
  • Adds support for embedded bitmaps in fonts on Linux.
  • Adds text rendering support for BGR subpixel layouts.
  • Adds the ability to move a currently open project to a new window through the recent projects modal.
  • Adds the line endings button setting to the settings UI.
  • Adds a jump-to-project-file affordance from the commit view.
  • AWS Bedrock provider now always uses 1M context windows for Anthropic models.
  • Improved text rendering clarity on macOS, particularly in dark themes.
  • Improved performance of 'Replace All' in buffer search.
  • Improved settings window performance.
  • Improved Vim navigation in the git graph with Ctrl-U and Ctrl-D half-page scrolling.
Was this useful?
◆  Local LLM Runtimes

LocalAI

Sources Release notes → v4.2.4 NOTES

LocalAI v4.2.4 adds Liquid Audio speech-to-speech model support and Vulkan VRAM budget parsing.

└──▷ GET THIS VERSION
$ git clone --branch v4.2.4 https://github.com/mudler/LocalAI.git
# already have the repo? check out this version:
$ git checkout v4.2.4
  • Adds Liquid Audio speech-to-speech (s2s) model and assistant mode on the talk page via the realtime interface.
  • Extends VRAM budget and usage detection to parse output from vulkaninfo, broadening GPU visibility for Vulkan-backed hardware.
Was this useful?

llama.cpp

Sources Release notes → b9133 2 RELEASES · 2026-05-13 NOTES STABLE

llama.cpp server and WebUI now support continuing generation on reasoning models with chain-of-thought preservation.

└──▷ GET THIS VERSION
$ git clone --branch b9133 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b9133
  • Server and WebUI support continued generation on reasoning models by orchestrating thinking_start_tag / thinking_end_tag pairs around prefilled messages, so the stream parser routes chunks correctly after a resume.
  • Server rejects reasoning prefill on channel-based templates (e.g. GPT-OSS) with an explicit error, limiting scope to simple thinking-tag templates.
1 more release in this issue · 2026-05-13
b9129 NOTES STABLE

llama.cpp b9129 adds GGML_ZENDNN_ADAPTIVE_FALLBACK env var to control ZenDNN-to-CPU fallback for small batch sizes.

└──▷ GET THIS VERSION
$ git clone --branch b9129 https://github.com/ggml-org/llama.cpp.git
# already have the repo? check out this version:
$ git checkout b9129
  • Adds GGML_ZENDNN_ADAPTIVE_FALLBACK environment variable (default: enabled) to control whether the ZenDNN backend adaptively falls back to the CPU backend for small batch sizes.
Was this useful?
◆  AI Model & Data Infrastructure

Ollama

Sources Release notes → v0.23.4 2 RELEASES · 2026-05-13 NOTES STABLE

Get up and running with Kimi-K2.6, GLM-5.2, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.

ollama launch opencode now accepts image inputs when using vision models.

└──▷ GET THIS VERSION
$ git clone --branch v0.23.4 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.23.4
└──▷ TRY IT
Use a vision model interactively with image inputs through the opencode launcher.
$ ollama launch opencode
  • Enables image input support for vision models via ollama launch opencode.
1 more release in this issue · 2026-05-13
v0.30.0 NOTES STABLE

Ollama v0.30.0 adds llama.cpp engine support, broader GGUF model compatibility, and faster NVIDIA performance.

└──▷ GET THIS VERSION
$ git clone --branch v0.30.0 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.30.0
  • Adds llama.cpp engine as a backend, augmenting the existing MLX engine on Apple Silicon and extending support to a wider range of hardware.
  • Supports GGUF-based models from Hugging Face directly, including user fine-tuned models.
  • Delivers faster inference performance on NVIDIA hardware.
└──▷ BREAKING ON UPGRADE
  • !nomic-embed-text now converts inputs to lowercase per the model card; prior Ollama versions incorrectly preserved mixed case, so embeddings generated by this model will differ from previous versions.
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-v15.8.0 2 RELEASES · 2026-05-13 NOTES STABLE

Phoenix 15.8.0 adds session population for agent traces and thinking controls for Anthropic and Google in the playground.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v15.8.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v15.8.0
  • Adds thinking controls for Anthropic and Google models in the playground UI.
  • Populates project_sessions for /chat and /summary agent traces, enabling session-level grouping of agent interactions.
  • Rebalances the pxi tool layout for improved workspace ergonomics.
1 more release in this issue · 2026-05-13
arize-phoenix-v15.7.0 NOTES STABLE

Phoenix v15.7.0 adds trace user feedback annotations and session-tagged identifiers for open/axial coding workflows.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v15.7.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v15.7.0
  • Adds trace user feedback annotations, enabling practitioners to attach human feedback directly to individual traces.
  • Adds session-tagged identifiers for open/axial coding workflows, supporting qualitative analysis patterns on session data.
  • Makes session turn messages expandable in the UI for easier inspection of multi-turn conversation traces.
  • Moves UI toast notifications to top-center with sonner-style stacking for improved visibility during active workflows.
└──▷ BREAKING ON UPGRADE
  • !The v1 /chat route and its associated code have been removed.
Was this useful?

Langfuse

Sources Release notes → v3.174.0 NOTES

Langfuse v3.174.0 adds email verification on signup, configurable blob-export field groups, and exposes exportSource/exportFieldGroups in the public REST API.

└──▷ GET THIS VERSION
$ git clone --branch v3.174.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.174.0
  • Exposes exportSource and exportFieldGroups in the public REST API for blob exports, giving teams programmatic control over what data is included in exports.
  • Adds configurable exportFieldGroups for events export, letting operators select which field groups are included when exporting blob/event data.
  • Adds exportFieldGroups DB column with tRPC passthrough as the backend plumbing for the new field-group export feature.
  • Adds email verification on signup to strengthen account authentication at registration time.
  • Adds more default views to the v4 traces view in the web UI.
Was this useful?
◆  MCP TOOLING

Composio

Sources Release notes → @composio/[email protected] NOTES

Composio @composio/[email protected] surfaces accountType filter on connectedAccounts.list() and namespaces Shared Connection mutation APIs under experimental.

└──▷ GET THIS VERSION
$ git clone --branch @composio/[email protected] https://github.com/ComposioHQ/composio.git
# already have the repo? check out this version:
$ git checkout @composio/[email protected]
└──▷ USE IT
List all SHARED connected accounts for a specific creator user without dropping to the raw client.
typescript
const shared = await composio.connectedAccounts.list({
  accountType: 'SHARED',
  userIds: ['user_creator'],
});
Create a SHARED connection and update its ACL using the new experimental namespace after migrating from the flat API.
typescript
await composio.connectedAccounts.link('user_id', 'auth_config_id', {
  experimental: {
    accountType: 'SHARED',
    aclConfigForShared: { allowAllUsers: true },
  },
});

await experimental_updateAcl(composio, 'ca_abc', { allowAllUsers: true });
  • Adds accountType: 'SHARED' filter to connectedAccounts.list() so SHARED connections can be listed directly without dropping to the raw client.
  • Moves accountType and aclConfigForShared options on connectedAccounts.link() and session.authorize() under a single experimental block, signalling that the shape may change in future releases.
  • Promotes connectedAccounts.updateAcl() off the class to a top-level named export experimental_updateAcl(composio, id, opts), consistent with the existing experimental_createTool / experimental_createToolkit pattern.
└──▷ BREAKING ON UPGRADE
  • !The flat accountType and aclConfigForShared options on connectedAccounts.link() and session.authorize() must now be nested inside an experimental: { ... } block — callers passing these at the top level will no longer compile or behave correctly.
  • !connectedAccounts.updateAcl() has been removed from the class; callers must switch to the top-level experimental_updateAcl(composio, id, opts) export.
Was this useful?
◆  VECTOR DB RAG

LanceDB

Sources Release notes → python-v0.32.0 2 RELEASES · 2026-05-13 NOTES STABLE

LanceDB python-v0.32.0 adds IVF_HNSW_FLAT index, model-backed FTS tokenizers, Enum/Pydantic support, and namespace operations.

└──▷ GET THIS VERSION
$ git clone --branch python-v0.32.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout python-v0.32.0
└──▷ USE IT
Tag client requests with a user identity when connecting to LanceDB Cloud for audit and multi-tenant tracking.
python
import lancedb
from lancedb import ClientConfig

db = lancedb.connect(
    "db://my-project",
    api_key="<api_key>",
    client_config=ClientConfig(user_id="[email protected]"),
)
  • Adds IVF_HNSW_FLAT vector index type, combining IVF partitioning with HNSW graph search over flat (uncompressed) vectors.
  • Adds user_id field to ClientConfig for per-user identification in enterprise/cloud connections.
  • Supports model-backed native FTS tokenizers, enabling language-model-driven tokenization for full-text search indexes.
  • Supports Enum types in Pydantic-to-Arrow schema conversion, so Python enum fields map correctly to Arrow schemas.
  • Supports child namespace operations and JSON serialization for LanceDBConnection, enabling nested namespace hierarchies.
+3 moreshow less
  • Adds manifest-enabled directory namespace mode for organizing tables within namespaces.
  • Supports nested namespace operations in database listing.
  • Makes Permutation fork-safe for PyTorch DataLoader workers, enabling safe use in multi-process data loading.
└──▷ BREAKING ON UPGRADE
  • !Namespace-related naming and enterprise integration have been consolidated — existing code referencing the old namespace identifiers or enterprise connection fields may break after upgrade.
1 more release in this issue · 2026-05-13
v0.29.0 NOTES STABLE

LanceDB v0.29.0 adds IVF_HNSW_FLAT index, model-backed FTS tokenizers, nested namespace ops, and a Node.js prewarmData method.

└──▷ GET THIS VERSION
$ git clone --branch v0.29.0 https://github.com/lancedb/lancedb.git
# already have the repo? check out this version:
$ git checkout v0.29.0
└──▷ USE IT
Pre-warm a Node.js table's data into memory before running latency-sensitive queries.
javascript
await table.prewarmData();
  • Adds IVF_HNSW_FLAT vector index support in Python, combining IVF partitioning with HNSW and flat re-ranking for improved ANN search.
  • Adds prewarmData method on the Node.js Table object to pre-load table data into memory before queries.
  • Adds user_id field to ClientConfig for user identification in enterprise integrations.
  • Supports model-backed native FTS tokenizers in Python, enabling neural/model-driven full-text search tokenization.
  • Adds manifest-enabled directory namespace mode for managing database namespaces.
+3 moreshow less
  • Supports child namespace operations and JSON serialization for LanceDBConnection in Python.
  • Supports nested namespace operations in listing databases from Rust.
  • Supports Enum types in Pydantic-to-Arrow schema conversion in Python.
└──▷ BREAKING ON UPGRADE
  • !Namespace-related naming and enterprise integration identifiers have been consolidated — existing code referencing the old namespace naming conventions or enterprise integration entry points may break and require updates.
Was this useful?
my-toolchain — 0 tools
paste an install list to detect your tools

A brew list, a Brewfile, requirements.txt, a Dockerfile — or just the product names, free-form. Nothing leaves your browser.

    browse all tools →