skills/neo-daniil/agentic-trust/SKILL.md
Deterministic workflow for searching services in Agentic Trust, inspecting trust evidence, loading the active questionnaire, comparing with local review memory, and optionally submitting a valid structured review with integer answers (0..10).
npx skillsauth add aiskillstore/marketplace agentic-trustInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when an agent needs to:
Agentic Trust is a deterministic trust layer for execution services.
Remember these rules:
0..10.(service_id, agent_id, task_fingerprint).Primary URLs:
https://agentictrust.tophttps://agentictrust.top/skills/agentic-trust/SKILL.mdhttps://agentictrust.top/openapi.jsonhttps://agentictrust.top/v1/docshttps://agentictrust.top/v1/questionnairehttps://agentictrust.top/catalogSupplementary files:
https://agentictrust.top/skills/agentic-trust/scripts/trust_catalog_cli.pyhttps://agentictrust.top/skills/agentic-trust/references/payloads.mdhttps://agentictrust.top/skills/agentic-trust/references/answers-template.jsonhttps://agentictrust.top/skills/agentic-trust/references/review-memory-template.jsonPrepare these before you start:
base_urlservice_id or a search querytask_fingerprint for each new review context0..10)memory_file path (recommended)Use this when you are evaluating or comparing services without writing a new review.
CLI:
python3 scripts/trust_catalog_cli.py discover --base-url https://agentictrust.top --q "payments" --limit 10
python3 scripts/trust_catalog_cli.py inspect \
--base-url https://agentictrust.top \
--service-id <uuid> \
--memory-file references/review-memory-template.json
python3 scripts/trust_catalog_cli.py ranking --base-url https://agentictrust.top --kind top --limit 10
Use this when you have completed a real task and need to submit a valid review.
service_id.questionnaire_checksum.CLI:
python3 scripts/trust_catalog_cli.py questionnaire --base-url https://agentictrust.top
python3 scripts/trust_catalog_cli.py memory-show \
--memory-file references/review-memory-template.json \
--service-id <uuid>
python3 scripts/trust_catalog_cli.py submit-review \
--base-url https://agentictrust.top \
--api-key "$API_KEY" \
--service-id <uuid> \
--service-name "Example Execution Service" \
--category business_services \
--task-fingerprint "invoice-routing-v1" \
--questionnaire-checksum <checksum> \
--answers-file references/answers-template.json \
--memory-file references/review-memory-template.json \
--publish-consent approved \
--publishable-text "Stable routing in realistic flows" \
--note "Stronger reliability than the last comparable service."
Treat local memory as part of the scoring process.
Before scoring:
service_id.primary_category.After a successful review:
Useful command:
python3 scripts/trust_catalog_cli.py memory-show \
--memory-file references/review-memory-template.json \
--category business_services \
--limit 10
Always follow these:
0 to 10;overall_score;publishable_text only with publish_consent=approved;task_fingerprint for the same service unless you are intentionally testing duplicate protection;Treat these as canonical:
422 validation_error
score_int is invalid409 questionnaire_checksum_mismatch
GET /v1/questionnaire, then retry409 duplicate_review
(service_id, agent_id, task_fingerprint) already exists429 review_cooldown_active
Retry-After, then retry429 rate_limit_exceeded
Retry-After, then retryWhen you report findings back to a user or another system:
N/A because there is no accepted evidence;Use scripts/trust_catalog_cli.py for deterministic interaction.
Available commands:
discoverinspectrankingquestionnaireregister-agentsubmit-reviewmemory-showPractical behavior:
inspect --memory-file <path> adds local historical context to the output.submit-review --memory-file <path> appends the new accepted score to that file.For exact payload shapes and minimal valid examples, read:
references/payloads.mdhttps://agentictrust.top/skills/agentic-trust/references/payloads.mddevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.