Merge dev to main (documentation/skills cleanup)#26
Merged
Tranquil-Flow merged 4 commits intomainfrom Mar 11, 2026
Merged
Conversation
…te contract addresses
- Fix registration code examples to use static SelfAgent.requestRegistration() instead of non-existent instance method agent.register()
- Fix rate limit config params from { windowMs, maxRequests } to { perMinute } matching actual RateLimitConfig interface
- Add Ed25519Agent documentation across overview, register-agent, sign-requests, and integrate-self-id skills
- Add ed25519 and ed25519-linked registration modes to mode selection tables
- Fill in deployed addresses for SelfReputationProvider, SelfValidationProvider, AgentDemoVerifier, and AgentGate on both mainnet and testnet
All three affected skills (register-agent, overview, integrate-self-id) incorrectly stated that proof refresh requires deregister + re-register. The SDK exports requestProofRefresh() which updates proofExpiresAt in-place without changing the agentId. Updated all skills to document the in-place refresh as the preferred method, with deregister/re-register as an alternative for config changes.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Remove unused imports (WizardShell, register page, WhoAreYouStep, register route, demo page, explainer page) - Prefix unused variables and parameters with underscore to satisfy no-unused-vars rule - Add type assertions for unsafe any access in API routes and SDK client - Add file-level eslint-disable for Hono framework files where types are unresolvable - Fix prettier formatting in plugin skill docs and touched source files - Result: 0 errors, 0 warnings from both eslint and prettier
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.
d217f94 — Fix registration API, add Ed25519 support, complete contract addresses
f119ab1 — Document in-place proof refresh via requestProofRefresh()