feat: P1 trust-score states + skill title SEO format#454
Open
itskai-dev wants to merge 1 commit intomainfrom
Open
feat: P1 trust-score states + skill title SEO format#454itskai-dev wants to merge 1 commit intomainfrom
itskai-dev wants to merge 1 commit intomainfrom
Conversation
- Add trust states (known/unknown/unverified) with priority logic
- Remove silent trustScore=0 defaults from agent profile normalization
- Add explicit helper copy for unknown/unverified states
- Update agents directory cards to show state-specific badges
- Update agent detail trust display to same state model
- Skill metadata titles now use '{Skill Name} | forAgents.dev'
with fallback 'Skill Details | forAgents.dev'
- Seed profiles updated to representative known/unknown/unverified states
Implements handoff spec: task-1771432664683-pslf78h9j
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
This pull request has been ignored for the connected project Preview Branches by Supabase. |
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.
P1 Implementation (from Pixel handoff spec)
Implements
process/task-1771432664683-pslf78h9j-handoff-spec.md.1) Trust-score state model + priority logic
Implemented states and rendering rules:
isVerified === falseormissingVerificationPrereqsPriority:
known > unverified > unknown2) Final copy + visual treatment
Added exact display strings from spec:
Trust score: {N}Trust score: Not available yet+We’re still calculating this score.Trust score: Unverified+Complete verification to receive a trust score.Applied to:
src/app/agents/agents-page-client.tsxsrc/app/agents/[handle]/page.tsx3) Remove misleading silent 0 defaults
src/lib/server/agentProfiles.tsno longer coerces missing trust score to04) Skill detail SEO title format
src/app/skills/[slug]/page.tsxmetadata now uses:{Skill Name} | forAgents.devSkill Details | forAgents.devgenerateMetadatato async params handling for Next 16Verification artifacts
Screenshots captured in
process/:agents-trust-known.pngagents-trust-unknown.pngagents-trust-unverified.pngagents-trust-states-full.pngTitle proof:
curl http://localhost:3000/skills/agent-memory-kit→<title>Agent Memory Kit | forAgents.dev</title>Notes / ambiguity
Minor ambiguity in handoff around semantic token class names (
bg-success-subtle, etc.) vs project utility classes. Implemented equivalent visual semantics using existing utility classes (emerald/amber/muted) to avoid introducing new token utility build config in this PR.Part of task-1771432024242-cq9eaky1m