wrap-cli
wrap-cli copied to clipboard
Used to create, build, and integrate wraps.
Currently in the `Modular Infra Command` PR, @namesty has added the concept of "Dependency Fetchers": https://github.com/polywrap/monorepo/blob/modular-testenv/packages/cli/src/lib/infra/InfraDependencyFetcher.ts They're currently tailored to the infra pipeline, but we can make them generic and...
Currently, most-all interface types for TypeScript applications are like so: ```typescript interface ModuleMethodInput extends Record { argument?: Types.String | null; } export const Module = { method: async ( input:...
Currently the rust codegen uses `String` instead of `str` for all of its types. This is needless, since these types should be expected to be "static" and immutable. An example...
# Motivation I want to be able to build Polywrap enabled apps in Go. This requires the creation of a Polywrap Client in Go. # Requested By * https://www.notion.so/polywrap/Pocket-999a8232a1c04987a621ab8dddffe1e2
The Polywrap client has good foundations for tracing, but it needs better filters and easier setup. CLI should have a `polywrap trace` command, which would spin up a docker container...
If wrappers are being hosted on a central server, addressable using a DNS based domain through HTTP(S), we should support querying them through a new URI resolver + authority. For...