{"slug":"alemtuzlak-rfc","name":"rfc","description":"Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc.","long_description":"---\nname: rfc\ndescription: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc.\n---\n\n# RFC Writer\n\nHelp the user write an RFC that survives review. An RFC is a **forcing function for clarity**, not documentation written after the fact. Its value is the thinking it forces: honest goals, real alternatives, named risks, and a concrete design. A pretty document with hand-waved alternatives and vague goals is worthless. This skill exists to prevent that.\n\nThis skill is **interactive by design**. It interviews the user to surface the thinking, grounds every claim in the real codebase, and shows the user working code for the design before writing a word of prose. It never fabricates the hard sections.\n\n## Principles\n\n- **The thinking is the product.** The document is a byproduct. If a section can't be filled honestly (no real alternative exists, no risk is known), say so explicitly rather than inventing filler.\n- **Ground every claim.** In a repo, back statements about the current system with file references. Never assert how the code works without having read it.\n- **Show, don't tell.** The design is communicated as a worked API / code example the user picked from real options, not as prose. This is non-negotiable (see Phase 3).\n- **Rejected options are not waste.** The approaches the user didn't pick become the \"Alternatives considered\" section, complete with their code. That's why alternatives are real here and not strawmen.\n- **Ask only what's unanswered.** If the user's request, a linked ticket, or the code already answers a dimension, don't re-ask it. Confirm your inference instead.\n- **Ruthlessly concise.** Every point stated in the fewest words that still make it clear. Prefer bullets over paragraphs, one sentence over three. No preamble, no restating the obvious, no filler. If a section can be one line, it's one line. The code snippet carries the design, so the prose around it stays minimal. A reader should skim the whole RFC in a couple of minutes.\n- **No em-dashes** in generated document content. Use commas, colons, periods, or parentheses.\n\n## Process Flow\n\n```dot\ndigraph rfc {\n    rankdir=TB;\n    \"Resolve input\" [shape=box];\n    \"Phase 1: Ground\" [shape=box];\n    \"In a repo?\" [shape=diamond];\n    \"Scan code + detect template\" [shape=box];\n    \"Phase 2: Interview\" [shape=box];\n    \"Phase 3: Design options\" [shape=box];\n    \"Option chosen?\" [shape=diamond];\n    \"Phase 4: Assemble\" [shape=box];\n    \"Phase 5: Self-critique\" [shape=box];\n    \"Phase 6: Review loop\" [shape=box];\n    \"Approved?\" [shape=diamond];\n    \"Phase 7: Output\" [shape=box];\n\n    \"Resolve input\" -> \"Phase 1: Ground\";\n    \"Phase 1: Ground\" -> \"In a repo?\";\n    \"In a repo?\" -> \"Scan code + detect template\" [label=\"yes\"];\n    \"In a repo?\" -> \"Phase 2: Interview\" [label=\"no\"];\n    \"Scan code + detect template\" -> \"Phase 2: Interview\";\n    \"Phase 2: Interview\" -> \"Phase 3: Design options\";\n    \"Phase 3: Design options\" -> \"Option chosen?\";\n    \"Option chosen?\" -> \"Phase 3: Design options\" [label=\"refine / new options\"];\n    \"Option chosen?\" -> \"Phase 4: Assemble\" [label=\"yes\"];\n    \"Phase 4: Assemble\" -> \"Phase 5: Self-critique\";\n    \"Phase 5: Self-critique\" -> \"Phase 6: Review loop\";\n    \"Phase 6: Review loop\" -> \"Approved?\";\n    \"Approved?\" -> \"Phase 6: Review loop\" [label=\"changes\"];\n    \"Approved?\" -> \"Phase 7: Output\" [label=\"yes\"];\n}\n```\n\n**Do NOT skip phases.** If the user bundles several answers into one message, accept them and skip ahead past what they answered. Never skip Phase 3 (the user must see and choose the design from real code options) or Phase 5 (self-critique).\n\n## Phase 1: Ground\n\n### Resolve the input\n\nThe user may provide: a freeform description, a GitHub PR/issue, a Linear ticket, or just a topic. Extract whatever is already answered so you don't re-ask it in Phase 2.\n\n### If inside a repo (mandatory)\n\n**Scan the code to understand the real context of what the user is proposing.** You cannot write a grounded RFC without knowing the system it changes.\n\n1. **Detect house convention.** Glob for an existing RFC setup: `rfcs/`, `docs/rfcs/`, `docs/rfc/`, `**/*rfc*template*`, `adr/`, `docs/adr/`, `.github/*TEMPLATE*`. If a template file exists, **adopt its section headings and its directory** instead of the built-in template, and tell the user in one line: `Using your repo's docs/rfcs/template.md; overriding my default structure.` No blocking question.\n2. **Scan the relevant subsystem.** Read the directory tree (names), README/architecture docs, and the actual modules the proposal touches. Understand: how the affected area works today, the patterns and abstractions already in use, the real constraints (types, interfaces, data flow). This grounds the Background section and, critically, lets Phase 3's code options match existing conventions.\n3. **Note file references** you'll cite in the RFC (`path:line`).\n\nIf outside a repo: skip scanning and detection; the interview drives a standalone doc using the built-in template.\n\n## Phase 2: Interview\n\nDrive toward the dimensions below. For each, **first check if it's already answered** by the input or the code scan; if so, confirm your inference (`I read that X works via Y - correct?`) instead of asking cold. Ask genuinely-open questions **one at a time**. Where the code scan gives you a candidate answer (especially alternatives and risks), **propose it** so the user reacts rather than generates from scratch.\n\n### Core dimensions (always)\n\n| # | Dimension | Feeds section |\n|---|-----------|---------------|\n| 1 | **Problem** - what's broken/missing, the pain today | Background / Motivation |\n| 2 | **Why now** - trigger, cost of inaction | Motivation |\n| 3 | **Goals** - what success looks like, measurable where possible | Goals |\n| 4 | **Non-goals** - explicitly out of scope | Non-Goals |\n| 5 | **Proposed approach** - handled as design options in Phase 3 | Proposed Design |\n| 6 | **Alternatives** - produced for free from Phase 3's rejected options | Alternatives Considered |\n| 7 | **Risks / tradeoffs** - what could go wrong, what it costs | Risks & Tradeoffs |\n| 8 | **Rollout** - migration, phasing, backward-compat, testing | Rollout Plan |\n| 9 | **Approvers / stakeholders** - who decides, who's affected | Approvers |\n| 10 | **Open questions** - known unknowns | Open Questions |\n\n### Conditional dimensions (ask only when warranted)\n\n- **Security / privacy** - when the proposal touches auth, secrets, PII, or a trust boundary.\n- **Performance / cost** - when it touches a hot path, adds a service, or has a resource budget.\n- **Observability** - when it introduces a new service or a failure mode worth alerting on.\n\nJudge relevance from the code scan and the proposal surface. Do not interrogate the user on these by reflex.\n\n### Goal quality check\n\nPush back on vague goals in-interview. \"Make it faster\" is not a goal; \"p99 under 200ms for the tenant list endpoint\" is. Ask for the measurable version.\n\n## Phase 3: Design options (the core of the skill)\n\nThis is where the RFC earns its keep. **Present 2-3 concrete, distinct approaches to the design, each shown as a worked API / code snippet** grounded in the codebase conventions from Phase 1. Not prose descriptions: actual code showing what the final API, function signatures, schema, or config would look like.\n\nFor each option give:\n\n- A short name and one-line summary.\n- **A code snippet** of the resulting API / usage / signature (the thing a future engineer would actually write against).\n- Its tradeoffs: what it's good at, what it costs, what it rules out.\n\nPresent them side by side and ask the user to choose or refine. Iterate if they want a new option or a blend.\n\n**The chosen option becomes the Proposed Design (with its code). The options they reject become the Alternatives Considered section, each keeping its code snippet and the reason it lost.** This is why alternatives in these RFCs are real: they were genuine candidates with working code, not retroactive strawmen.\n\nIf only one viable approach genuinely exists, say so and present it alone with an explicit note that alternatives were considered and why none were viable. Do not manufacture fake options to fill the table.\n\n## Phase 4: Assemble\n\nWrite the full RFC to the output file (path resolved in Phase 7, confirmed early). **Keep it tight** (see the \"Ruthlessly concise\" principle): bullets over paragraphs, shortest wording that stays clear, no filler. The code snippet does the explaining; the prose just frames it. Use the repo's house template if one was detected in Phase 1; otherwise the built-in structure below.\n\nInclude a **Mermaid diagram** when the design has structure worth seeing (architecture, sequence, data flow, state machine). One diagram answering one question. Skip it for changes that are purely API-level with no interesting flow.\n\n### Built-in template\n\n```markdown\n# RFC: <title>\n\n## Summary\n<TL;DR a reader gets in 30 seconds: what this proposes and why.>\n\n## Background & Motivation\n<The problem, the current state (with file references if in a repo), and why now.\nWhat happens if we do nothing.>\n\n## Goals\n<Measurable where possible. Bullets.>\n\n## Non-Goals\n<Explicitly out of scope, so reviewers don't relitigate it.>\n\n## Proposed Design\n<The chosen approach. Lead with the worked code / API example from Phase 3.\nThen explain how it works, grounded in real modules. Diagram if warranted.>\n\n## Alternatives Considered\n<Each rejected option from Phase 3, with its code snippet and why it lost.>\n\n## Risks & Tradeoffs\n<Each risk paired with a mitigation, or an explicit \"accepted, because ...\".>\n\n## Rollout Plan\n<Migration, phasing, backward-compat, testing strategy.>\n\n## Open Questions\n<Known unknowns. Better to name them than pretend they're resolved.>\n\n## Approvers\n<Who signs off, who's affected. Names, so it's clear where the decision lies.>\n```\n\nInclude conditional sections (Security, Performance, Observability) only when they were relevant in Phase 2.\n\n### Optional metadata (only if the user requested it)\n\nBy default do not add frontmatter or a number. If the user asks for it, prepend:\n\n```markdown\n---\nstatus: Draft   # Draft | In Review | Accepted | Rejected | Superseded\nauthor: <name>\ndate: <YYYY-MM-DD>\napprovers: [ ]\n---\n```\n\nAuto-number (`NNNN-slug.md`) only if the target directory already contains `NNNN-*.md` files; scan for the highest and increment. Otherwise use a plain slug filename.\n\n## Phase 5: Self-critique (mandatory, before the user sees the draft)\n\nRun the assembled RFC against this rubric and fix what you can. Then report what you caught and what still needs the user.\n\n- **Goals measurable?** Vague aspirations tightened to something testable.\n- **Alternatives real?** At least one genuine alternative with its own code, not a strawman. (Phase 3 should guarantee this.)\n- **Every risk mitigated?** Each risk has a mitigation or an explicit \"accepted, because ...\".\n- **Design concrete?** The Proposed Design contains an actual API/code snippet, not just prose.\n- **Claims backed?** Every statement about the codebase has a file reference behind it. No unbacked assertions.\n\nReport briefly, e.g.: `Self-critique: tightened 2 vague goals; flagged one risk (data migration downtime) with no mitigation yet - need your call. Everything else backed.`\n\n## Phase 6: Review loop\n\n> `RFC written to <path>. Open in a markdown previewer for the rendered diagram. Want any changes?`\n\nApply changes by editing the file. Loop until approved.\n\n## Phase 7: Output\n\n### Path resolution (confirm early, at the start of Phase 4)\n\n- Repo with detected RFC dir: `<that dir>/<NNNN->slug.md`.\n- Repo without ","tagline":"Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approac","category":"research","tags":["agent-skill"],"author":"AlemTuzlak","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"recursive skill source sync","sourceDetail":"AlemTuzlak/skills","creatorName":"AlemTuzlak","creatorUrl":"https://github.com/AlemTuzlak","sourceUrl":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/alemtuzlak-rfc#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":39,"forks":0,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":34.31},"quality":{"score":57,"tier":"promising","label":"Promising","summary":"Useful candidate, but compare it with alternatives before adopting.","signals":[{"label":"GitHub stars","value":"39","tone":"neutral"},{"label":"Freshness","value":"3d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"Unknown","tone":"neutral"}],"warnings":["Low GitHub adoption signal","Repository license is unknown; this may create ambiguity for redistribution and reuse."]},"trust":{"version":"trust-score-v5","score":60,"base_score":68,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["60/100 Trust Score v5","68/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"39 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"39 stars, 0 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"3d since push"},{"id":"license","label":"License clarity","score":42,"weight":0.09,"status":"warn","detail":"Unknown"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":74,"weight":0.12,"status":"info","detail":"network or browser surface, database surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add AlemTuzlak/skills --skill rfc"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":60,"weight":0.07,"status":"warn","detail":"filesystem or document access, network or browser access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"39 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"39 stars, 0 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"3d since push"},{"status":"warn","label":"License clarity","detail":"Unknown"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"network or browser surface, database surface"},{"status":"pass","label":"Install availability","detail":"npx skills add AlemTuzlak/skills --skill rfc"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"warn","label":"Permission surface","detail":"filesystem or document access, network or browser access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"2 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: filesystem or document access, network or browser access","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"39 GitHub stars","repoActivity":"39 stars, 0 forks","lastPushed":"3d since push","license":"Unknown","repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","install":"npx skills add AlemTuzlak/skills --skill rfc","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document access, network or browser access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add AlemTuzlak/skills --skill rfc","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is unclear","No Agent Proven outcome evidence yet","3d since push","Financial domain: human review is required before use in a live investment workflow.","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v3","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["research","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add AlemTuzlak/skills --skill rfc","trust_score":60,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":68,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v5":{"version":"trust-score-v5","score":60,"base_score":68,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["60/100 Trust Score v5","68/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"39 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"39 stars, 0 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"3d since push"},{"id":"license","label":"License clarity","score":42,"weight":0.09,"status":"warn","detail":"Unknown"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":74,"weight":0.12,"status":"info","detail":"network or browser surface, database surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add AlemTuzlak/skills --skill rfc"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":60,"weight":0.07,"status":"warn","detail":"filesystem or document access, network or browser access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"39 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"39 stars, 0 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"3d since push"},{"status":"warn","label":"License clarity","detail":"Unknown"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"network or browser surface, database surface"},{"status":"pass","label":"Install availability","detail":"npx skills add AlemTuzlak/skills --skill rfc"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"warn","label":"Permission surface","detail":"filesystem or document access, network or browser access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"2 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: filesystem or document access, network or browser access","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"39 GitHub stars","repoActivity":"39 stars, 0 forks","lastPushed":"3d since push","license":"Unknown","repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","install":"npx skills add AlemTuzlak/skills --skill rfc","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document access, network or browser access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add AlemTuzlak/skills --skill rfc","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is unclear","No Agent Proven outcome evidence yet","3d since push","Financial domain: human review is required before use in a live investment workflow.","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v3","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["research","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add AlemTuzlak/skills --skill rfc","trust_score":60,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":68,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v4":{"version":"trust-score-v4","score":68,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection.","recommendedAction":"Inspect the repository, license, and recent activity before connecting it to agent workflows.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"39 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"39 stars, 0 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"3d since push"},{"id":"license","label":"License clarity","score":42,"weight":0.09,"status":"warn","detail":"Unknown"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":74,"weight":0.12,"status":"info","detail":"network or browser surface, database surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add AlemTuzlak/skills --skill rfc"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":60,"weight":0.07,"status":"warn","detail":"filesystem or document access, network or browser access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"39 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"39 stars, 0 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"3d since push"},{"status":"warn","label":"License clarity","detail":"Unknown"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"network or browser surface, database surface"},{"status":"pass","label":"Install availability","detail":"npx skills add AlemTuzlak/skills --skill rfc"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"warn","label":"Permission surface","detail":"filesystem or document access, network or browser access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"2 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern"],"warnings":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: filesystem or document access, network or browser access"],"evidence":{"stars":"39 GitHub stars","repoActivity":"39 stars, 0 forks","lastPushed":"3d since push","license":"Unknown","repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","install":"npx skills add AlemTuzlak/skills --skill rfc","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document access, network or browser access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add AlemTuzlak/skills --skill rfc","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is unclear","No Agent Proven outcome evidence yet","3d since push","Financial domain: human review is required before use in a live investment workflow."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":40,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"experimental","label":"Experimental","badge":"EXPERIMENTAL","summary":"Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","auto_install_policy":"review","reasons":["High-risk permission hints: Secrets or environment access","40/100 agent safety score"]},"auto_install_allowed":false,"human_review_required":true,"blocked":false,"audit_risk":"needs_review","permission_hints":[{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"},{"id":"secrets","label":"Secrets or environment access","reason":"Skill metadata references credentials, tokens, environment variables, or secret-bearing workflows.","severity":"high"},{"id":"database","label":"Database access","reason":"Skill may inspect schemas, query databases, or work with persistent stores.","severity":"medium"}],"policy_warnings":["High-risk permission hints: Secrets or environment access","License is unclear"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"experimental","label":"Experimental","badge":"EXPERIMENTAL","auto_install_policy":"review","auto_install_allowed":false,"blocked":false,"human_review_required":true,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","reasons":["High-risk permission hints: Secrets or environment access","40/100 agent safety score"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"review","score":62,"risk_level":"medium","decision":{"recommendation":"manual_review","reason":"Test manually in an isolated workspace and compare against safer alternatives.","auto_install_allowed":false,"policy":"review","human_review_required":true},"blockers":[],"warnings":["Trust score: Potentially useful, but at least one trust signal needs human inspection.","Audit score: Needs review","Agent safety gate: Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","License clarity: Unknown","Permission surface: filesystem or document access, network or browser access","High-risk permission hints: Secrets or environment access","License is unclear","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Repository license is unknown; this may create ambiguity for redistribution and reuse.","Low GitHub adoption signal","Financial research output is not financial advice; require human review before any live investment decision."],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":84,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate rfc before installing it in an agent workflow","research","GitHub automation workflows; Claude Code teams; builders willing to evaluate younger projects"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add AlemTuzlak/skills --skill rfc"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add AlemTuzlak/skills --skill rfc"]},{"id":"trust_score","label":"Trust score","status":"warn","score":68,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","39 GitHub stars","Unknown"]},{"id":"audit_score","label":"Audit score","status":"warn","score":72,"required_for_auto_install":true,"detail":"Needs review","evidence":["License is unclear"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"warn","score":40,"required_for_auto_install":true,"detail":"Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","evidence":["Test manually in an isolated workspace and compare against safer alternatives.","High-risk permission hints: Secrets or environment access"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"pass","score":86,"required_for_auto_install":false,"detail":"Metadata includes enough usage and workflow context","evidence":["Strong README/SKILL.md context"]},{"id":"license_clarity","label":"License clarity","status":"warn","score":42,"required_for_auto_install":true,"detail":"Unknown","evidence":["Unknown"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"3d since push","evidence":["3d since push"]},{"id":"permission_surface","label":"Permission surface","status":"warn","score":60,"required_for_auto_install":true,"detail":"filesystem or document access, network or browser access","evidence":["Network access: medium","Filesystem access: medium","Secrets or environment access: high"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/alemtuzlak-rfc/evals","api":"/api/agent/evals?slug=alemtuzlak-rfc","text":"/api/agent/evals?slug=alemtuzlak-rfc&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"alemtuzlak-rfc","name":"rfc","description":"Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc.","category":"research","url":"https://www.openagentskill.com/skills/alemtuzlak-rfc","repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","github_repo":"AlemTuzlak/skills"},"suited_tasks":["GitHub automation workflows","Claude Code teams","builders willing to evaluate younger projects","Inspect repository metadata","Compare code changes","Write concise engineering summaries","Search sources","Extract claims"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add AlemTuzlak/skills --skill rfc","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.2.1/openagentskill-0.2.1.tgz install alemtuzlak-rfc"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"rfc\" agent skill from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"rfc\" as a Claude Code skill from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"rfc\" from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/alemtuzlak-rfc/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/alemtuzlak-rfc"},"trust":{"score":68,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"39 GitHub stars","repoActivity":"39 stars, 0 forks","lastPushed":"3d since push","license":"Unknown","repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","install":"npx skills add AlemTuzlak/skills --skill rfc","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document access, network or browser access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["research","agent-skill"],"known_risks":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":72,"risk_level":"needs_review","risk_label":"Needs review","warnings":["License is unclear","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Repository license is unknown; this may create ambiguity for redistribution and reuse.","Low GitHub adoption signal","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access"]},"safety_gate":{"tier":"experimental","label":"Experimental","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives."},"quality":{"score":57,"label":"Promising"},"supply":{"track":"Research and knowledge work","scenario":"Research agents","maintenance":"3d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","Low GitHub adoption signal","Repository license is unknown; this may create ambiguity for redistribution and reuse.","High-risk permission hints: Secrets or environment access","License is unclear","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision"],"agent_contract":{"task_input":"Use rfc in an agent workflow","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","install_policy":"review","minimum_review_before_use":["Trust: 68/100 Manual review","Audit: 72/100 Needs review","Safety: 40/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"alemtuzlak-rfc (rfc)","install_command":"npx skills add AlemTuzlak/skills --skill rfc","risk_summary":"Needs review; Experimental; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"alemtuzlak-rfc","task":"Use rfc in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/alemtuzlak-rfc","api":"https://www.openagentskill.com/api/agent/skills/alemtuzlak-rfc","audit":"https://www.openagentskill.com/skills/alemtuzlak-rfc/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=alemtuzlak-rfc&task=Use%20rfc%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20rfc%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20rfc%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/alemtuzlak-rfc/install","manifest":"https://www.openagentskill.com/api/registry/manifest/alemtuzlak-rfc"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"alemtuzlak-rfc","name":"rfc","description":"Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc.","category":"research","url":"https://www.openagentskill.com/skills/alemtuzlak-rfc","repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","github_repo":"AlemTuzlak/skills"},"suited_tasks":["GitHub automation workflows","Claude Code teams","builders willing to evaluate younger projects","Inspect repository metadata","Compare code changes","Write concise engineering summaries","Search sources","Extract claims"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add AlemTuzlak/skills --skill rfc","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.2.1/openagentskill-0.2.1.tgz install alemtuzlak-rfc"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"rfc\" agent skill from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"rfc\" as a Claude Code skill from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"rfc\" from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/alemtuzlak-rfc/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/alemtuzlak-rfc"},"trust":{"score":68,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"39 GitHub stars","repoActivity":"39 stars, 0 forks","lastPushed":"3d since push","license":"Unknown","repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","install":"npx skills add AlemTuzlak/skills --skill rfc","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document access, network or browser access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["research","agent-skill"],"known_risks":["Repository license is unknown; this may create ambiguity for redistribution and reuse.","Financial research output is not financial advice; require human review before any live investment decision.","License is unclear","Low GitHub adoption signal","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":72,"risk_level":"needs_review","risk_label":"Needs review","warnings":["License is unclear","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Repository license is unknown; this may create ambiguity for redistribution and reuse.","Low GitHub adoption signal","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access"]},"safety_gate":{"tier":"experimental","label":"Experimental","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives."},"quality":{"score":57,"label":"Promising"},"supply":{"track":"Research and knowledge work","scenario":"Research agents","maintenance":"3d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","Low GitHub adoption signal","Repository license is unknown; this may create ambiguity for redistribution and reuse.","High-risk permission hints: Secrets or environment access","License is unclear","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision"],"agent_contract":{"task_input":"Use rfc in an agent workflow","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","install_policy":"review","minimum_review_before_use":["Trust: 68/100 Manual review","Audit: 72/100 Needs review","Safety: 40/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"alemtuzlak-rfc (rfc)","install_command":"npx skills add AlemTuzlak/skills --skill rfc","risk_summary":"Needs review; Experimental; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"alemtuzlak-rfc","task":"Use rfc in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/alemtuzlak-rfc","api":"https://www.openagentskill.com/api/agent/skills/alemtuzlak-rfc","audit":"https://www.openagentskill.com/skills/alemtuzlak-rfc/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=alemtuzlak-rfc&task=Use%20rfc%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20rfc%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20rfc%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/alemtuzlak-rfc/install","manifest":"https://www.openagentskill.com/api/registry/manifest/alemtuzlak-rfc"}},"supply_profile":{"track":{"slug":"research","label":"Research and knowledge work","shortLabel":"Research","description":"Deep research, source comparison, literature review, RAG, knowledge search, and reports."},"scenario":{"label":"Research agents","description":"I need my agent to research a topic, compare sources, and produce a concise report.","useCases":[{"slug":"github-automation","title":"GitHub automation"},{"slug":"research-agents","title":"Research agents"},{"slug":"coding-agents","title":"Coding agents"}]},"applicableAgents":["Claude Code","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add AlemTuzlak/skills --skill rfc","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":39,"starsLabel":"39","forks":0,"license":"Unknown","qualityScore":57,"trustScore":68,"auditScore":72},"maintenance":{"status":"fresh","label":"3d since push","daysSincePush":3,"lastPushedAt":"2026-08-19T09:05:02+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["License is unclear","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Repository license is unknown; this may create ambiguity for redistribution and reuse.","Low GitHub adoption signal"]},"coverageTags":["Research","Research agents","agent-skill"]},"audit":{"audit_score":72,"risk_level":"needs_review","risk_label":"Needs review","quality_score":57,"trust_score":68,"maintenance_score":100,"security_score":70,"install_score":92,"warnings":["License is unclear","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Repository license is unknown; this may create ambiguity for redistribution and reuse.","Low GitHub adoption signal","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: filesystem or document access, network or browser access","GitHub adoption: 39 GitHub stars","Stars/forks activity: 39 stars, 0 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: filesystem or document access, network or browser access"]},"quality_signals":{"model":"v2","star_score":11.21,"usage_score":0,"review_score":5.1,"metadata_score":3,"freshness_score":15},"platforms":["Claude Code"],"use_cases":[{"slug":"github-automation","title":"GitHub automation","url":"https://www.openagentskill.com/use-cases/github-automation"},{"slug":"research-agents","title":"Research agents","url":"https://www.openagentskill.com/use-cases/research-agents"},{"slug":"coding-agents","title":"Coding agents","url":"https://www.openagentskill.com/use-cases/coding-agents"},{"slug":"document-processing","title":"Document processing","url":"https://www.openagentskill.com/use-cases/document-processing"}],"stacks":[{"slug":"research-report-agent","title":"Research report agent","url":"https://www.openagentskill.com/collections/research-report-agent"},{"slug":"coding-review-agent","title":"Coding review agent","url":"https://www.openagentskill.com/collections/coding-review-agent"},{"slug":"rag-knowledge-base","title":"RAG knowledge base","url":"https://www.openagentskill.com/collections/rag-knowledge-base"}],"install":"npx skills add AlemTuzlak/skills --skill rfc","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.2.1/openagentskill-0.2.1.tgz install alemtuzlak-rfc","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"rfc\" agent skill from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"rfc\" as a Claude Code skill from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"rfc\" from https://github.com/AlemTuzlak/skills/tree/main/skills/rfc into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when the user wants to write, draft, or author an RFC (Request for Comments) / technical design doc for a feature, change, or architectural decision. Interactively interviews the user, grounds the proposal in the actual codebase, presents 2-3 concrete API/code-snippet approaches to choose from, then writes a review-ready RFC. Triggers on \"write an RFC\", \"draft an RFC\", \"RFC for X\", \"design doc for X\", or /rfc. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"alemtuzlak-rfc\",\"task\":\"Install rfc\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","github_repo":"AlemTuzlak/skills","version":"1.0.0","license":"Unknown","urls":{"web":"https://www.openagentskill.com/skills/alemtuzlak-rfc","repository":"https://github.com/AlemTuzlak/skills/tree/main/skills/rfc","api":"/api/agent/skills/alemtuzlak-rfc","install_api":"/api/skills/alemtuzlak-rfc/install"},"meta":{"created_at":"2026-08-19T18:36:59.915366+00:00","updated_at":"2026-08-19T18:36:59.915366+00:00","agent_friendly":true}}