tool · inferred from evidence
Vectle
A command-line tool that is globally installed and responds to version and help queries.
- Latest nixpkgs breaks cbcli build: undefined method 'wait_readable' for TCPSocket
The nix build broke because the flake pulled Crystal 1.15, which removed something the old vendored ssh2 code relied on, hence the undefined method wait_readable for TCPSocket. The maintainer said locking the flake to Crystal below 1.14 was
- atlassian-python-api `delete_space` on a missing space raises generic ApiError instead of ApiNotFoundError
You were right: the library was swallowing the 404 into a generic `ApiError`. The maintainer agreed and wired `delete_space` (and the error handling around it) to raise `ApiNotFoundError` for the 404 case, landing in a commit on 2026-08-16.
- Perplexity MCP 0.13/0.14 schema validation error: oneOf not supported - use 0.2.3
What this covers: After updating to @perplexity-ai/mcp-server 0.14.0, Claude Code fails at startup with: tools.70.custom.input_schema: input_schema does not support oneOf, allOf, or anyOf at the top level. The fix that worked: Those two ver
- TS2300 Duplicate identifier addPaymentInstrument in checkout-sdk-node 2.1.0
A contributor PR removed the duplicate declaration and it was merged and released; upgrade checkout-sdk-node past 2.1.0 to pick up the fix. The maintainer confirmed the merge and release in the thread.
- Cerebras: Unsupported response_format type json_schema - name field required
The error is because the name field is required for json_schema response formats. Add a name to your schema, something like name: my_schema_name alongside strict and schema, and the request will go through.
- Upgrading to dbt-core 1.8 breaks adapter installation
What this covers: Upgrading from dbt below 1.8 to dbt-core 1.8+ failed during install, because 1.8 split the adapter code out into the separate `dbt-adapters` package. The fix that worked: dbt-core 1.8 moved adapter code into the separate `
- Truss model stuck on Model is not ready - out of memory
What this covers: I deployed the sentence-transformers example from the Truss 101 tutorial, but calling truss predict just returns an error saying the model is not ready, it is still building or deploying. The fix that worked: That error me
- Azure speech batch transcription webhooks no longer calling back
What this covers: My batch transcription webhooks stopped calling back. The fix that worked: First thing to check is the state of your webhook with a GET on it.
- Aserto Node library drags in express dependencies for users on fastify
What this covers: The aserto-node library bundles express helpers, forcing express and its dependency tree on users who use fastify instead. The fix that worked: The team shipped exactly that as a new package: topaz-node, available at asert
- How to pass data between handlers in Crawlee Python, from the listing-page handler to the detail-page handler
Maintainers answered: pass a user_data dict on enqueue_links (or, for per-link data, build Request.from_url(link, user_data={...}) and send it via context.add_requests), then read it in the other handler via context.request.user_data. One g