Exécutez n'importe quel Skill dans Manus
en un clic
en un clic
Exécutez n'importe quel Skill dans Manus en un clic
Commencer$pwd:
$ git log --oneline --stat
stars:3 124
forks:191
updated:12 mars 2026 à 23:03
SKILL.md
Debug failing PeerDB e2e and connector tests locally. Use when the user wants to investigate test failures, run specific tests, isolate flaky tests, or troubleshoot test issues. Uses the /tilt skill for infrastructure management.
Interact with the PeerDB Tilt dev environment. Use when the user wants to check service status, enable/disable resources, trigger builds or tests, view logs, or manage the local development infrastructure.
| name | update-dependencies |
| description | Updates dependencies in the PeerDB repository |
| disable-model-invocation | true |
Make a to-do list for the following sequence, then execute it:
main branch. Run ./generate-protos.sh to avoid build failures down the lineupdate-dependencies (delete the old one if it's more than a few days old). Don't delete the remote branchcargo update
b. see if cargo outdated -R has anything new (apart from prost that didn't resolve its compatibility issues after recent upstream changes, and tonic/tonic-health/pbjson/pbjson-types/reqwest it depends on, don't touch those). If it does, update those one by one in the right order and resolve incompatibilities, flagging to the user if something is non-trivial
c. make sure the project builds with all features enabled (some are disabled by default)npm update
b. npm out, update the remaining ones one by on in the right order, resolve incompatibilities, flagging to the user if something is non-trivial
c. test the build with npm run build
d. run the linters from ui-lint.yml to validatego get -u . && go mod tidy - then undo the updates for dependencies marked as // PINNED, we have tasks for resolving those separately
b. flag if anything else was breaking and doesn't have an easy fix
c. validate with go build
d. run the linters from golang-lint.yml
e. run go run ./cmd/check_pinned_versions from flow/ to verify pinned versions are consistentbuf.gen.yaml, flag if anything is more than a simple version bumppinnedVersions map in flow/cmd/check_pinned_versions/main.go to match
e. Outline an up to half-paragraph description of the hurdle to the user so they can put it in a task