Bill Maxwell
Bill Maxwell
This adds the basics for encryption of secret data on a per-cluster basis. There are convenience calls to bulk encrypt a message for multiple clusters given their public keys. The...
Similar to the `?` on sys.* tools allowing for the LLM to retry based on the errors, users should be able to do that with their own tools. Right now,...
created a built in tool that stats a file and returns the size, mode and mod time.
When using a container for development and optionally using a service the dependsOn fields need to be conditioned like so: `dependsOn: std.ifelse(args.atlas, ["nats"], ["nats", "mongo"])` Otherwise, the dependent containers will...
This takes a first pass at removing sections from the runtime docs that will be covered by the SaaS solution. The goal is for these docs to cover installing and...
Given this Acornfile: ``` acorns: "echo-app": { image: "index.docker.io/cloudnautique/echo-app:services" links: ["service-redis.redis:redis"] secrets: ["service-redis.redis-password:redis-password"] } services: "service-redis": { build: { context: "./helm-chart" acornfile: "./helm-chart/Acornfile" } } ``` When you run this,...
If operationIds are not provided in the OpenAPI spec, the parser should autogenerate based on "method" and "path" or similar so a consumer an use the spec without having to...
When adding OpenAPI tools there should be debug logs that inform the user a tool is being added or skipped. For instance after using a conversion tool from v2 to...
There should be a way to use authentication with HTTP during development. Our docs indicate that "HTTP" endpoints are ignored for authentication to avoid sending credentials without TLS, however there...
Currently we only support Openapi v3 spec. In Python working with Flask, and anecdotally golang, it is very easy to create v2 specs, but not v3. This results in needing...