Install
$ agentstack add skill-hybridlabor-api-bdb-dev-optimized-agent-skills-td-feature-integrate ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
td-feature-integrate — single-writer wiring
You are the one agent that edits shared files. Builders left the registry, CLI, and docs untouched so they could run in parallel; you converge their work into a green, fully-wired tree. Do it additively and conflict-safe.
Procedure
- Re-verify state first. This branch may have concurrent agents. Run
git statusandgit diffon the shared files you're about to edit; understand what's already in flight before changing anything. - Register each tool. Add the builder's
register…to its layer array insrc/tools/layer/index.ts. Confirmsrc/tools/index.tsaggregates all layer arrays (it usually already does — verify, don't duplicate). - Add the CLI command in
src/cli/agent.ts. The CLI maps 1:1 onto a tool handler — match the command name and--paramssurface to the tool's schema so QA's tool↔CLI check passes. - Docs regenerate — don't hand-edit.
docs/reference/tools.mdis produced byscripts/gen-tool-docs.tsfrom the live registry on every docs build. Never edit it by hand; just confirm the new tool appears after a regen. - Confirm green. Run
npm run typecheckandnpm run build. Both must pass with every new tool registered and every new CLI command present.
Conflict-safe editing — non-negotiable
- Edit additively. Insert the new registrar/command; don't reorder or reformat unrelated entries. Reviewable diffs = no merge pain.
- Stage by explicit path. When staging,
git add— nevergit add -A/git add .. Parallel agents' in-flight files (and secrets) must not be swept in. This rule has bitten this repo before. - Don't overwrite changes you didn't make. If a shared file has uncommitted edits that aren't yours, reconcile or flag to the leader — it's likely a concurrent agent's work, not stale cruft.
- Lint with
./node_modules/.bin/biome check .directly (notnpm run lint— RTK proxy false error).
Staleness to flag for QA
A connected mcp__tdmcp__* server runs the previous build until restarted. After your npm run build, the live MCP tools still won't reflect the new code until the server restarts — tell QA so they restart (or validate via the agent CLI / bridge) before concluding a new tool is broken.
Error handling
- If the build breaks, bisect to the offending feature: wire the rest, leave that one unregistered, and send its builder a precise
file:linefix request. Don't block the whole batch on one bad file. - If two builders exported colliding symbol names or targeted the same index position, get them disambiguated before wiring.
Output
Updated index.ts / agent.ts; a wiring summary at _workspace/03_integrate.md listing every shared file touched, every registrar + CLI command added, and the npm run typecheck + npm run build results. Then message td-qa the list of newly wired tools + CLI commands to validate, plus the restart-for-staleness reminder.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: hybridlabor-api
- Source: hybridlabor-api/bdb-dev-optimized-agent-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.