{"slug":"deupaxx-ew","name":"ew","description":"Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew,\n/ew, or asks for help writing\nanything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages,\nsales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles\nswitching between voices — the writer's own and separate profiles for ghostwriting clients.\nRuns voice onboarding on first use, then routes to the correct sub-skill under the anti-AI\nwriting rules.","long_description":"---\nname: ew\ndescription: |\n  Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew,\n  /ew, or asks for help writing\n  anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages,\n  sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles\n  switching between voices — the writer's own and separate profiles for ghostwriting clients.\n  Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI\n  writing rules.\nlicense: MIT\nmetadata:\n  version: \"0.3.0\"\n---\n\n# EW — Everyday Writer\n## Master Entry Point\n\nEveryday Writer turns the AI companion into a disciplined writing partner: voice-aware,\nanti-slop, and useful for both publication drafts and creative-development work.\n\n---\n\n## STEP 1: RESOLVE THE VOICE\n\nBefore anything else, work out which voice this piece is being written in and whether its fingerprint is complete.\n\n**In Codex or any filesystem-capable companion environment:** Read `core/voice-profile.md`. That file is the **resolver**, not a profile — it points at the active voice under `~/.everyday-writer/`. Follow its resolution steps, then check the resolved profile for `Completed: Yes`.\n\n**In memory-only cowork environments:** Read the \"EW Active Voice\" memory to get the active name, then the \"EW Voice Profile — [Name]\" memory for that voice.\n\n**If no voices exist at all, or the resolved profile is `Completed: No` → go to STEP 2.**\n**If resolution cannot complete for any other reason** — a broken `active-voice` pointer, several voices and none active, an override naming a voice that does not exist — **stop and ask.** Do not guess. Wrong-voice output is fluent and plausible, which makes it far harder to catch than an error.\n**If a complete profile resolves → go to STEP 3.**\n\n---\n\n## STEP 2: ONBOARDING\n\nRead `onboarding/ONBOARDING.md` now. Do not proceed past this step until onboarding is complete. The sub-skills require a voice profile to function at their best — running them without one produces generic output the system was explicitly designed to prevent.\n\nTell the user:\n\n> \"Before we start writing, I need to calibrate to your voice. This takes about 5 minutes and only happens once. After this, every skill in the system writes in your register, not a generic one.\"\n\nThen follow `onboarding/ONBOARDING.md`.\n\nThis step also runs when the user adds a voice later with `/ew:voice new` — for a ghostwriting client, say, whose fingerprint is separate from their own.\n\n---\n\n## STEP 3: CHECK REFERENCES\n\nBefore dispatching to a sub-skill, scan the **active voice's** references folder — `~/.everyday-writer/voices/<slug>/references/` — for any `.md` files the user has dropped there.\n\nIf reference files exist: read them and note any platform-specific instructions, tone preferences, or constraints they contain. These supplement the voice profile and take precedence over default sub-skill behavior where they conflict.\n\nIf no reference files exist: proceed.\n\n**Do not scan the plugin's own `references/` folder.** Reference material is per-voice by design: a ghostwriting client's brand guidelines must not be able to reach the user's own writing, and vice versa. A single shared folder cannot give that guarantee.\n\n---\n\n## STEP 4: DISPATCH\n\nRead the user's request. Identify the task type and route to the appropriate sub-skill. Read the sub-skill file fully before beginning any writing.\n\n**Every sub-skill invocation follows this sequence:**\n1. Read `core/anti-ai-rules.md` (all sections, Section 0 first)\n2. Read `core/ai_slop_commandments.md` (technical pattern reference — covers mechanisms anti-ai-rules.md doesn't)\n3. Read `core/voice-profile.md` — the resolver — and follow it to the active voice's fingerprint\n4. Read any `.md` files in that voice's `references/`\n5. Read the sub-skill file\n6. Write\n\nDo not skip steps. The rules in `core/anti-ai-rules.md` are not suggestions — they are the floor every piece of writing must clear before it leaves this system.\n\n---\n\n## DISPATCH MAP\n\nUse this table to route requests to the correct sub-skill file.\n\n| User request type | Sub-skill file |\n|---|---|\n| Newsletter — story-led, personal essay, narrative, voice-driven | `skills/newsletter-creative/SKILL.md` |\n| Newsletter — technical, tutorial, analysis, data, how-to | `skills/newsletter-technical/SKILL.md` |\n| LinkedIn post or article | `skills/linkedin/SKILL.md` |\n| Tweet, X post, or thread | `skills/tweets/SKILL.md` |\n| Substack Note | `skills/substack-notes/SKILL.md` |\n| Website copy, landing page, homepage | `skills/web-copy/SKILL.md` |\n| Sales page, email sequence, direct response | `skills/sales-copy/SKILL.md` |\n| Fiction scene, chapter, or prose | `skills/scene-structure/SKILL.md` |\n| Screenplay or script | `skills/script-writing/SKILL.md` |\n| World-building for fiction | `skills/world-builder/SKILL.md` |\n| Obsidian vault, story graph, character/place notes, or world bible files | `skills/world-builder/SKILL.md` |\n| Audit / rewrite comparison / before-after | `skills/audit/SKILL.md` |\n| Idea → outline / stuck on structure / don't know what to write | `skills/outline/SKILL.md` |\n| What does AI writing look like / failure examples / slop examples | `skills/failure-library/SKILL.md` |\n| Switch voice / add a client / list voices / \"who am I writing as?\" / recalibrate a voice | `skills/voice/SKILL.md` |\n\n**If the request is ambiguous:** Ask one clarifying question before routing. \"Is this newsletter more personal/story-driven or informational/analysis-driven?\" is a routing question. Ask it directly and wait for the answer.\n\n**If the request spans multiple sub-skills** (e.g., \"write a LinkedIn post and a newsletter issue about the same topic\"): Run each sub-skill in sequence, fully, with the appropriate file for each. Do not blend the rules.\n\n---\n\n## DIRECT INVOCATION\n\nWhen the user invokes a sub-skill directly (e.g., `$ew:linkedin` or `/ew:linkedin`), skip the dispatch step and go straight to the sub-skill. Still run STEP 1 (voice resolution), STEP 3 (references check), and the invocation sequence above. Direct invocation skips routing, not constraints — and it does not skip the voice, so `$ew:linkedin as client-acme` works exactly as it does through `$ew`.\n\nDirect invocation paths:\n- `$ew:newsletter-creative` or `/ew:newsletter-creative` → `skills/newsletter-creative/SKILL.md`\n- `$ew:newsletter-technical` or `/ew:newsletter-technical` → `skills/newsletter-technical/SKILL.md`\n- `$ew:linkedin` or `/ew:linkedin` → `skills/linkedin/SKILL.md`\n- `$ew:tweets` or `/ew:tweets` → `skills/tweets/SKILL.md`\n- `$ew:substack-notes` or `/ew:substack-notes` → `skills/substack-notes/SKILL.md`\n- `$ew:web-copy` or `/ew:web-copy` → `skills/web-copy/SKILL.md`\n- `$ew:sales-copy` or `/ew:sales-copy` → `skills/sales-copy/SKILL.md`\n- `$ew:scene-structure` or `/ew:scene-structure` → `skills/scene-structure/SKILL.md`\n- `$ew:script-writing` or `/ew:script-writing` → `skills/script-writing/SKILL.md`\n- `$ew:world-builder` or `/ew:world-builder` → `skills/world-builder/SKILL.md`\n- `$ew:audit` or `/ew:audit` → `skills/audit/SKILL.md`\n- `$ew:outline` or `/ew:outline` → `skills/outline/SKILL.md`\n- `$ew:failure-library` or `/ew:failure-library` → `skills/failure-library/SKILL.md`\n- `$ew:voice` or `/ew:voice` → `skills/voice/SKILL.md`\n\n---\n\n## MULTI-VOICE\n\nEW holds any number of voices: the writer's own, plus one per ghostwriting client. Each is a self-contained workspace — its own fingerprint, its own reference material, its own drafts — stored under `~/.everyday-writer/voices/<slug>/`.\n\n**One voice is active at a time.** It persists across sessions until changed. `/ew:voice` lists what exists and which is active; `/ew:voice <name>` switches.\n\n**A single piece can be written in another voice without switching.** If the request names one — \"write this as writer-main\", \"in client-acme's voice\" — that voice applies to this invocation only and the active voice is untouched.\n\n**Nothing bleeds between voices.** Reference material is per-voice, so a client's brand documents cannot reach the writer's own work.\n\n**Interactive output is tagged with the voice it was written in:**\n\n```\nVoice: client-acme\n\n[draft follows]\n```\n\nOne line, no prompt, no waiting. Suppressed in embedded mode. The reason it exists: the expensive failure in a multi-voice system is publishing in the wrong one, and that failure is invisible until after publication.\n\nFull resolution rules, including every ambiguous case and how to fail on it, are in `core/voice-profile.md`.\n\n---\n\n## INVOCATION MODES\n\nHow EW was called changes what it hands back. The writing standard never changes; only the packaging does.\n\n**Interactive (default).** The user is talking to you in a session. Deliver the finished piece. Where a bracketed gap remains under Section 0.2, name it and ask for the detail.\n\n**File mode.** The user points at a file and asks you to rewrite it. Run the loop internally, write the final version back to the file, and report a short summary of what changed rather than pasting the whole rewrite into the conversation. Rewrite prose only: leave code blocks, YAML frontmatter, data tables, and link targets untouched. When writing a new draft rather than rewriting in place, and the user gave no path, write to the active voice's `drafts/` folder.\n\n**Embedded mode.** Another skill, agent, or task is using EW as one step of a larger job (a commit message, a PR body, a section of a longer document). Output only the finished text. No preamble, no audit notes, no summary, no offer to revise, **and no voice tag**. The caller wants prose, not ceremony.\n\n---\n\n## THE STANDARD THIS SYSTEM HOLDS\n\nRead Section 0 of `core/anti-ai-rules.md`. That section is the operating contract for every piece of writing this system produces. It is not tone flavor. It is the minimum acceptable level of execution.\n\nThree rules in that file govern everything downstream, and no sub-skill may relax them:\n\n- **Section 0.1 (Precedence).** The writer's voice profile outranks this system's style rules, and a sample they paste outranks the profile. Strip machine defaults, not the writer.\n- **Section 0.2 (Fabrication).** Never introduce a fact, name, number, date, quote, or source the writer did not supply. Mark the gap with `[brackets]` or ask. This binds hardest during rewrites, where vague prose invites invention.\n- **Sections 9 and 10 (Restraint).** Look for clusters of tells, not instances, and protect the things that prove a human wrote it. An over-corrected draft is a failed draft.\n\n**Never present a first draft.** Run the two-pass loop in Section 7.1 of `core/anti-ai-rules.md`: draft, then answer the three interrogation questions in writing, then revise. Do not show the writer your interrogation answers unless they ask.\n\nWhen a draft is complete, run both checklists before presenting it: Section 7.2 of `core/anti-ai-rules.md` and Section 6 of `core/ai_slop_commandments.md`. Do not present a draft that fails either. Fix it first.\n\nThe writer using this system is an A-Player or they're training to become one. The system treats them accordingly — which means it holds the work to the standard, not to the standard of what's comfortable.\n","tagline":"Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew,\n/ew, or asks for help writing\nanything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages,\nsales copy, fiction scenes, screenplays, outlines, or a rewrit","category":"business","tags":["agent-skill"],"author":"Deupaxx","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"recursive skill source sync","sourceDetail":"Deupaxx/EveryDay-Writer","creatorName":"Deupaxx","creatorUrl":"https://github.com/Deupaxx","sourceUrl":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/deupaxx-ew#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":28,"forks":5,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":33.49},"quality":{"score":61,"tier":"promising","label":"Promising","summary":"Useful candidate, but compare it with alternatives before adopting.","signals":[{"label":"GitHub stars","value":"28","tone":"neutral"},{"label":"Freshness","value":"2d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"MIT","tone":"neutral"}],"warnings":["Low GitHub adoption signal","The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly."]},"trust":{"version":"trust-score-v5","score":62,"base_score":70,"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":["62/100 Trust Score v5","70/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":"28 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"28 stars, 5 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"2d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"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":90,"weight":0.12,"status":"pass","detail":"no major dependency risk hints in public metadata"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add Deupaxx/EveryDay-Writer --skill ew"},{"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":86,"weight":0.07,"status":"pass","detail":"filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md"},{"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":"28 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"28 stars, 5 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"2d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"pass","label":"Dependency/runtime risk","detail":"no major dependency risk hints in public metadata"},{"status":"pass","label":"Install availability","detail":"npx skills add Deupaxx/EveryDay-Writer --skill ew"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"pass","label":"Permission surface","detail":"filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md"},{"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":"6 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":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"28 GitHub stars","repoActivity":"28 stars, 5 forks","lastPushed":"2d since push","license":"MIT","repository":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","install":"npx skills add Deupaxx/EveryDay-Writer --skill ew","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document 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 Deupaxx/EveryDay-Writer --skill ew","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","2d since push","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":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"]},"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":["business","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add Deupaxx/EveryDay-Writer --skill ew","trust_score":62,"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"],"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":["business","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"],"knownRisks":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":70,"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":62,"base_score":70,"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":["62/100 Trust Score v5","70/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":"28 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"28 stars, 5 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"2d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"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":90,"weight":0.12,"status":"pass","detail":"no major dependency risk hints in public metadata"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add Deupaxx/EveryDay-Writer --skill ew"},{"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":86,"weight":0.07,"status":"pass","detail":"filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md"},{"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":"28 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"28 stars, 5 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"2d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"pass","label":"Dependency/runtime risk","detail":"no major dependency risk hints in public metadata"},{"status":"pass","label":"Install availability","detail":"npx skills add Deupaxx/EveryDay-Writer --skill ew"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"pass","label":"Permission surface","detail":"filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md"},{"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":"6 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":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"28 GitHub stars","repoActivity":"28 stars, 5 forks","lastPushed":"2d since push","license":"MIT","repository":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","install":"npx skills add Deupaxx/EveryDay-Writer --skill ew","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document 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 Deupaxx/EveryDay-Writer --skill ew","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","2d since push","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":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"]},"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":["business","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add Deupaxx/EveryDay-Writer --skill ew","trust_score":62,"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"],"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":["business","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"],"knownRisks":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":70,"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":70,"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":"28 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"28 stars, 5 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"2d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"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":90,"weight":0.12,"status":"pass","detail":"no major dependency risk hints in public metadata"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add Deupaxx/EveryDay-Writer --skill ew"},{"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":86,"weight":0.07,"status":"pass","detail":"filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md"},{"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":"28 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"28 stars, 5 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"2d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"pass","label":"Dependency/runtime risk","detail":"no major dependency risk hints in public metadata"},{"status":"pass","label":"Install availability","detail":"npx skills add Deupaxx/EveryDay-Writer --skill ew"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"pass","label":"Permission surface","detail":"filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md"},{"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":"6 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":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"],"evidence":{"stars":"28 GitHub stars","repoActivity":"28 stars, 5 forks","lastPushed":"2d since push","license":"MIT","repository":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","install":"npx skills add Deupaxx/EveryDay-Writer --skill ew","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add Deupaxx/EveryDay-Writer --skill ew","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","2d since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"]},"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":["business","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"],"knownRisks":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 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":60,"level":"review_before_install","label":"Review before install","safety_tier":{"tier":"reviewed","label":"Reviewed with permission notes","badge":"REVIEWED","summary":"Usable candidate, but the agent should surface permission and audit notes before installation.","recommended_action":"Require human approval before installing into a real workspace.","auto_install_policy":"review","reasons":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","60/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"}],"policy_warnings":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly."],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"reviewed","label":"Reviewed with permission notes","badge":"REVIEWED","auto_install_policy":"review","auto_install_allowed":false,"blocked":false,"human_review_required":true,"recommended_action":"Require human approval before installing into a real workspace.","reasons":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","60/100 agent safety score"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"review","score":70,"risk_level":"medium","decision":{"recommendation":"manual_review","reason":"Require human approval before installing into a real workspace.","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: Usable candidate, but the agent should surface permission and audit notes before installation.","The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","The skill instructs reading files from the user's home directory (~/.everyday-writer/). While legitimate for voice profiles, this could be a privacy concern if the skill is used in a sandboxed environment; ensure the skill only accesses files the user has explicitly created and does not follow symlinks or read arbitrary paths.","The sub-skills referenced in the dispatch map are not included in the submitted directory. The skill depends on them; ensure they are present in the repository and properly documented.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"],"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":94,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate ew before installing it in an agent workflow","business","Research agents 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 Deupaxx/EveryDay-Writer --skill ew"]},{"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 Deupaxx/EveryDay-Writer --skill ew"]},{"id":"trust_score","label":"Trust score","status":"warn","score":70,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","28 GitHub stars","MIT"]},{"id":"audit_score","label":"Audit score","status":"warn","score":76,"required_for_auto_install":true,"detail":"Needs review","evidence":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly."]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"warn","score":60,"required_for_auto_install":true,"detail":"Usable candidate, but the agent should surface permission and audit notes before installation.","evidence":["Require human approval before installing into a real workspace.","The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly."]},{"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":"pass","score":86,"required_for_auto_install":true,"detail":"MIT","evidence":["MIT"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"2d since push","evidence":["2d since push"]},{"id":"permission_surface","label":"Permission surface","status":"pass","score":86,"required_for_auto_install":true,"detail":"filesystem or document access","evidence":["Network access: medium","Filesystem access: medium"]},{"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/deupaxx-ew/evals","api":"/api/agent/evals?slug=deupaxx-ew","text":"/api/agent/evals?slug=deupaxx-ew&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"deupaxx-ew","name":"ew","description":"Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew,\n/ew, or asks for help writing\nanything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages,\nsales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles\nswitching between voices — the writer's own and separate profiles for ghostwriting clients.\nRuns voice onboarding on first use, then routes to the correct sub-skill under the anti-AI\nwriting rules.","category":"business","url":"https://www.openagentskill.com/skills/deupaxx-ew","repository":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","github_repo":"Deupaxx/EveryDay-Writer"},"suited_tasks":["Research agents workflows","Claude Code teams","builders willing to evaluate younger projects","Search sources","Extract claims","Synthesize findings","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","OpenAI Agents","CLI"],"install":{"command":"npx skills add Deupaxx/EveryDay-Writer --skill ew","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 deupaxx-ew"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"ew\" agent skill from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md. 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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 \"ew\" as a Claude Code skill from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md. 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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 \"ew\" from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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/deupaxx-ew/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/deupaxx-ew"},"trust":{"score":70,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"28 GitHub stars","repoActivity":"28 stars, 5 forks","lastPushed":"2d since push","license":"MIT","repository":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","install":"npx skills add Deupaxx/EveryDay-Writer --skill ew","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document 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":["business","agent-skill"],"known_risks":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 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":76,"risk_level":"needs_review","risk_label":"Needs review","warnings":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","The skill instructs reading files from the user's home directory (~/.everyday-writer/). While legitimate for voice profiles, this could be a privacy concern if the skill is used in a sandboxed environment; ensure the skill only accesses files the user has explicitly created and does not follow symlinks or read arbitrary paths.","The sub-skills referenced in the dispatch map are not included in the submitted directory. The skill depends on them; ensure they are present in the repository and properly documented.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"]},"safety_gate":{"tier":"reviewed","label":"Reviewed with permission notes","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Require human approval before installing into a real workspace."},"quality":{"score":61,"label":"Promising"},"supply":{"track":"Research and knowledge work","scenario":"Research agents","maintenance":"2d 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","The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","The skill instructs reading files from the user's home directory (~/.everyday-writer/). While legitimate for voice profiles, this could be a privacy concern if the skill is used in a sandboxed environment; ensure the skill only accesses files the user has explicitly created and does not follow symlinks or read arbitrary paths.","The sub-skills referenced in the dispatch map are not included in the submitted directory. The skill depends on them; ensure they are present in the repository and properly documented.","Quality score needs review","GitHub adoption: 28 GitHub stars"],"agent_contract":{"task_input":"Use ew in an agent workflow","recommended_action":"Require human approval before installing into a real workspace.","install_policy":"review","minimum_review_before_use":["Trust: 70/100 Manual review","Audit: 76/100 Needs review","Safety: 60/100 Review before install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"deupaxx-ew (ew)","install_command":"npx skills add Deupaxx/EveryDay-Writer --skill ew","risk_summary":"Needs review; Reviewed with permission notes; 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":"deupaxx-ew","task":"Use ew 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/deupaxx-ew","api":"https://www.openagentskill.com/api/agent/skills/deupaxx-ew","audit":"https://www.openagentskill.com/skills/deupaxx-ew/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=deupaxx-ew&task=Use%20ew%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20ew%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20ew%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/deupaxx-ew/install","manifest":"https://www.openagentskill.com/api/registry/manifest/deupaxx-ew"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"deupaxx-ew","name":"ew","description":"Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew,\n/ew, or asks for help writing\nanything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages,\nsales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles\nswitching between voices — the writer's own and separate profiles for ghostwriting clients.\nRuns voice onboarding on first use, then routes to the correct sub-skill under the anti-AI\nwriting rules.","category":"business","url":"https://www.openagentskill.com/skills/deupaxx-ew","repository":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","github_repo":"Deupaxx/EveryDay-Writer"},"suited_tasks":["Research agents workflows","Claude Code teams","builders willing to evaluate younger projects","Search sources","Extract claims","Synthesize findings","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","OpenAI Agents","CLI"],"install":{"command":"npx skills add Deupaxx/EveryDay-Writer --skill ew","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 deupaxx-ew"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"ew\" agent skill from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md. 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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 \"ew\" as a Claude Code skill from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md. 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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 \"ew\" from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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/deupaxx-ew/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/deupaxx-ew"},"trust":{"score":70,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"28 GitHub stars","repoActivity":"28 stars, 5 forks","lastPushed":"2d since push","license":"MIT","repository":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","install":"npx skills add Deupaxx/EveryDay-Writer --skill ew","installSafety":"standard package or runtime install path","permissionSurface":"filesystem or document 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":["business","agent-skill"],"known_risks":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 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":76,"risk_level":"needs_review","risk_label":"Needs review","warnings":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","The skill instructs reading files from the user's home directory (~/.everyday-writer/). While legitimate for voice profiles, this could be a privacy concern if the skill is used in a sandboxed environment; ensure the skill only accesses files the user has explicitly created and does not follow symlinks or read arbitrary paths.","The sub-skills referenced in the dispatch map are not included in the submitted directory. The skill depends on them; ensure they are present in the repository and properly documented.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"]},"safety_gate":{"tier":"reviewed","label":"Reviewed with permission notes","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Require human approval before installing into a real workspace."},"quality":{"score":61,"label":"Promising"},"supply":{"track":"Research and knowledge work","scenario":"Research agents","maintenance":"2d 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","The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","The skill instructs reading files from the user's home directory (~/.everyday-writer/). While legitimate for voice profiles, this could be a privacy concern if the skill is used in a sandboxed environment; ensure the skill only accesses files the user has explicitly created and does not follow symlinks or read arbitrary paths.","The sub-skills referenced in the dispatch map are not included in the submitted directory. The skill depends on them; ensure they are present in the repository and properly documented.","Quality score needs review","GitHub adoption: 28 GitHub stars"],"agent_contract":{"task_input":"Use ew in an agent workflow","recommended_action":"Require human approval before installing into a real workspace.","install_policy":"review","minimum_review_before_use":["Trust: 70/100 Manual review","Audit: 76/100 Needs review","Safety: 60/100 Review before install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"deupaxx-ew (ew)","install_command":"npx skills add Deupaxx/EveryDay-Writer --skill ew","risk_summary":"Needs review; Reviewed with permission notes; 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":"deupaxx-ew","task":"Use ew 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/deupaxx-ew","api":"https://www.openagentskill.com/api/agent/skills/deupaxx-ew","audit":"https://www.openagentskill.com/skills/deupaxx-ew/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=deupaxx-ew&task=Use%20ew%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20ew%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20ew%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/deupaxx-ew/install","manifest":"https://www.openagentskill.com/api/registry/manifest/deupaxx-ew"}},"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":"research-agents","title":"Research agents"},{"slug":"local-desktop","title":"Local desktop"},{"slug":"workflow-automation","title":"Workflow automation"}]},"applicableAgents":["Claude Code","OpenAI Agents","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add Deupaxx/EveryDay-Writer --skill ew","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":28,"starsLabel":"28","forks":5,"license":"MIT","qualityScore":61,"trustScore":70,"auditScore":76},"maintenance":{"status":"fresh","label":"2d since push","daysSincePush":2,"lastPushedAt":"2026-08-20T15:33:39+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","The skill instructs reading files from the user's home directory (~/.everyday-writer/). While legitimate for voice profiles, this could be a privacy concern if the skill is used in a sandboxed environment; ensure the skill only accesses files the user has explicitly created and does not follow symlinks or read arbitrary paths.","The sub-skills referenced in the dispatch map are not included in the submitted directory. The skill depends on them; ensure they are present in the repository and properly documented.","Low GitHub adoption signal","Quality score needs review"]},"coverageTags":["Research","Research agents","business","agent-skill"]},"audit":{"audit_score":76,"risk_level":"needs_review","risk_label":"Needs review","quality_score":61,"trust_score":70,"maintenance_score":100,"security_score":80,"install_score":92,"warnings":["The SKILL.md excerpt is truncated; the full file must be complete and self-contained for the dispatcher to work correctly.","The skill instructs reading files from the user's home directory (~/.everyday-writer/). While legitimate for voice profiles, this could be a privacy concern if the skill is used in a sandboxed environment; ensure the skill only accesses files the user has explicitly created and does not follow symlinks or read arbitrary paths.","The sub-skills referenced in the dispatch map are not included in the submitted directory. The skill depends on them; ensure they are present in the repository and properly documented.","Low GitHub adoption signal","Quality score needs review","GitHub adoption: 28 GitHub stars","Stars/forks activity: 28 stars, 5 forks; issue activity unavailable in current metadata"]},"quality_signals":{"model":"v2","star_score":10.24,"usage_score":0,"review_score":5.25,"metadata_score":3,"freshness_score":15},"platforms":["Claude Code","OpenAI Agents"],"use_cases":[{"slug":"research-agents","title":"Research agents","url":"https://www.openagentskill.com/use-cases/research-agents"},{"slug":"local-desktop","title":"Local desktop","url":"https://www.openagentskill.com/use-cases/local-desktop"},{"slug":"workflow-automation","title":"Workflow automation","url":"https://www.openagentskill.com/use-cases/workflow-automation"},{"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":"content-growth-agent","title":"Content growth agent","url":"https://www.openagentskill.com/collections/content-growth-agent"},{"slug":"browser-qa-agent","title":"Browser QA agent","url":"https://www.openagentskill.com/collections/browser-qa-agent"}],"install":"npx skills add Deupaxx/EveryDay-Writer --skill ew","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 deupaxx-ew","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 \"ew\" agent skill from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md. 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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 \"ew\" as a Claude Code skill from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md. 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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 \"ew\" from https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md 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: Everyday Writer master dispatcher for an AI writing companion. Use when the user invokes $ew, /ew, or asks for help writing anything for publication: newsletters, LinkedIn posts, tweets, Substack Notes, landing pages, sales copy, fiction scenes, screenplays, outlines, or a rewrite of existing text. Also handles switching between voices — the writer's own and separate profiles for ghostwriting clients. Runs voice onboarding on first use, then routes to the correct sub-skill under the anti-AI writing rules. 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\":\"deupaxx-ew\",\"task\":\"Install ew\",\"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/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","github_repo":"Deupaxx/EveryDay-Writer","version":"1.0.0","license":"MIT","urls":{"web":"https://www.openagentskill.com/skills/deupaxx-ew","repository":"https://github.com/Deupaxx/EveryDay-Writer/blob/main/SKILL.md","api":"/api/agent/skills/deupaxx-ew","install_api":"/api/skills/deupaxx-ew/install"},"meta":{"created_at":"2026-08-20T15:35:38.880511+00:00","updated_at":"2026-08-20T15:35:38.880511+00:00","agent_friendly":true}}