Open
Conversation
Adds a Claude Code skill that guides autonomous agents through building,
testing, and deploying TVC enclave applications. Includes a working
timestamp notary service as a demo app.
Skill (skills/tvc-app-builder/):
- SKILL.md with full build-test-deploy workflow using autonomous CLI flags
- TVC CLI reference covering --json, --no-input, --yes for non-interactive use
- Deployment troubleshooting guide (private images, wrong domains, digest confusion)
- Template architecture, testing patterns, and app examples references
- Trigger evals passing at 93.5% accuracy with 0% false positives
Demo app (src/helloworld/):
- POST /notarize: accepts document hash, returns timestamped receipt
- GET /verify/{receipt_id}: looks up receipt by ID, 404 if missing
- GET /stats: total notarized document count
- Shared state via Arc<RwLock<AppState>> with proper error handling
- 14 unit tests + 4 e2e tests, all passing
CI (.github/workflows/skill-eval.yml):
- Validates skill structure on skills/** changes
- Runs trigger evals with 90% threshold
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Updated skill to match actual TVC CLI behavior observed during a real deployment. Removed non-existent global flags (--json, --no-input, --yes), corrected deploy approve to use --dangerous-skip-interactive, replaced JSON parsing instructions with grep-based output parsing and cached config reads, added ghcr.io auth and package visibility steps, documented enclave provisioning delay and dev environment URL pattern.
…global flags Restored --json, --no-input, --yes global flags and login flags (--alias, --api-env, --skip-api-key-wait) to match the updated TVC CLI. Kept the deployment workflow improvements from v3.1.0: ghcr.io authentication step, package visibility instructions, enclave provisioning delay documentation, and dev environment URL pattern.
…st-sdk Remove all src/ changes (router, e2e tests, Cargo files) to keep this as a skill-only PR. Fix CLI documentation to match actual rust-sdk/tvc source: remove nonexistent --operator-key-file global flag, remove nonexistent --skip-api-key-wait login flag, mark tvc app list as unimplemented.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
skills/tvc-app-builder/) that guides autonomous agents through the full TVC app lifecycle: project setup, Rust endpoint implementation, testing, OCI container builds, and deployment via the tvc CLIWhat the skill teaches an agent
--json,--no-input,--yesCLI flagsSkill structure
Test plan
npm run validatepasses