From wendy-agentic-coding
Use when working in Wendy Labs repos, especially wendy-agent, WendyOS, samples, templates, or cloud docs, and the task needs orientation on Wendy CLI, agent, gRPC, runtime, or app deployment paths.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wendy-agentic-coding:wendy-codebaseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this workflow for Wendy CLI, `wendy-agent`, WendyOS, and sample app tasks.
Use this workflow for Wendy CLI, wendy-agent, WendyOS, and sample app tasks.
pwd, git status --short --branch, and git remote -v.AGENTS.md and CLAUDE.md if present. Treat local instructions as authoritative for paths, device access, and publish preferences.rg/rg --files before broad directory walking. Avoid generated proto files unless the task is about generated surfaces.In wendy-agent:
go/cmd/wendy/main.go.go/internal/cli/commands/root.go.wendy run flow: go/internal/cli/commands/run.go.go/internal/cli/commands/helpers.go.go/internal/cli/grpcclient/client.go.go/internal/cli/providers/.wendy.json schema logic: go/internal/shared/appconfig/.go/internal/shared/discovery/.go/cmd/wendy-agent/main.go.go/internal/agent/services/.go/internal/agent/containerd/.go/internal/agent/oci/.Proto/; generated Go code: go/proto/gen/.The CLI is a Cobra application. Most device commands resolve a target, create a typed gRPC client, then call one of the agent services. The agent starts a plaintext gRPC server on port 50051, may start an mTLS server on 50052, registers agent/container/audio/video/provisioning/telemetry services, and uses containerd for app runtime work.
For app deployment, wendy run loads and validates wendy.json, resolves a target, builds with the appropriate provider, creates or updates a container on the agent through WendyContainerService, then starts the container and streams output back to the CLI.
wendy.json, trace from config parsing to the actual CLI or agent code path that consumes it.codes.Unimplemented as a normal compatibility path where possible.gofmt on touched files and targeted go test packages. Broaden tests when touching shared CLI, gRPC, or runtime behavior.cd /Users/maximilianalexander/wendylabsinc/wendy-agent/go
go test ./internal/cli/commands ./internal/agent/services
gofmt -w <changed-go-files>
wendy-dev --help
Use wendy-dev when testing the CLI from source if the user's local shell defines it.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub wendylabsinc/wendy-agentic-coding --plugin wendy-agentic-coding