<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: 行銷Dog</title>
    <description>The latest articles on DEV Community by 行銷Dog (@dog_b821e5d41b5f87b0a7a).</description>
    <link>https://dev.to/dog_b821e5d41b5f87b0a7a</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4074863%2F17357e4e-0c8d-45f0-b41f-aae568bd6813.jpg</url>
      <title>DEV Community: 行銷Dog</title>
      <link>https://dev.to/dog_b821e5d41b5f87b0a7a</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dog_b821e5d41b5f87b0a7a"/>
    <language>en</language>
    <item>
      <title>Coverage Before Confidence: Designing an Evidence Ledger for Creator-Analysis Agents</title>
      <dc:creator>行銷Dog</dc:creator>
      <pubDate>Thu, 13 Aug 2026 02:56:17 +0000</pubDate>
      <link>https://dev.to/dog_b821e5d41b5f87b0a7a/coverage-before-confidence-designing-an-evidence-ledger-for-creator-analysis-agents-11h7</link>
      <guid>https://dev.to/dog_b821e5d41b5f87b0a7a/coverage-before-confidence-designing-an-evidence-ledger-for-creator-analysis-agents-11h7</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Disclosure: This article was drafted and published with assistance from OpenAI Codex. Every factual claim below was checked against the public repository artifacts before publication.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A creator-analysis agent can produce a fluent report from a handful of posts. The harder question is whether the report is entitled to make the claims it makes.&lt;/p&gt;

&lt;p&gt;If an agent reads three visible posts and quietly describes them as a complete account strategy, the failure is not poor prose. It is hidden scope expansion.&lt;/p&gt;

&lt;p&gt;While building an open-source skill for Xiaohongshu/RedNote creator analysis, I found that the most useful design change was to put a coverage ledger before every conclusion.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the coverage ledger records
&lt;/h2&gt;

&lt;p&gt;The ledger makes four counts explicit:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;discovered items&lt;/li&gt;
&lt;li&gt;successfully parsed items&lt;/li&gt;
&lt;li&gt;items with enough complete content to analyze&lt;/li&gt;
&lt;li&gt;items selected for deep analysis&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It also records the stopping condition, duplicates, low-information entries, failed or skipped items, and material that remains uncovered.&lt;/p&gt;

&lt;p&gt;This distinction matters because a successful HTTP response is not the same as a readable post, and a readable sample is not the same as a complete account.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three input modes, three different claims
&lt;/h2&gt;

&lt;p&gt;The workflow uses three modes with deliberately different scopes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;QUICK_SET&lt;/strong&gt;: deeply analyze 3–8 posts supplied by the user. There is no network access, and every supplied item is included.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PUBLIC_SAMPLE&lt;/strong&gt;: inspect only publicly readable material, inventory a bounded range, and select a sample transparently. It must never be presented as full-account coverage.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ACCOUNT_PACKAGE&lt;/strong&gt;: inventory a user-provided export or package first, then select 3–8 items for deep analysis. Even here, the claim is limited to the package, not to an independently verified platform export.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A mode is not just an implementation choice. It defines what the resulting report is allowed to say.&lt;/p&gt;

&lt;h2&gt;
  
  
  Evidence IDs make conclusions auditable
&lt;/h2&gt;

&lt;p&gt;The workflow separates three evidence layers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Sxxx&lt;/strong&gt; identifies an item found during account or package inventory.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Nxx&lt;/strong&gt; identifies a complete item selected for deep analysis.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Axx&lt;/strong&gt; identifies an aggregate computed from successfully parsed inventory fields, including its numerator, denominator, and exclusions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This prevents a common shortcut: using a title, timestamp, or engagement count as if it proved writing style, author intent, or audience response.&lt;/p&gt;

&lt;p&gt;For content mechanisms, medium- or high-confidence claims must point back to multiple independent Nxx items. Conflicts and counterexamples stay visible instead of being averaged away.&lt;/p&gt;

&lt;h2&gt;
  
  
  HOLD is a valid result
&lt;/h2&gt;

&lt;p&gt;The system exposes only two top-level states:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;PASS&lt;/strong&gt; means the report is supportable within the declared coverage.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HOLD&lt;/strong&gt; means missing content, ambiguous identity, access restrictions, unsafe input, or insufficient evidence prevents a full report.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;HOLD is not an error to hide. It is the correct output when continuing would require guessing or bypassing access controls.&lt;/p&gt;

&lt;p&gt;For example, a real Xiaohongshu short-link boundary test reached a generic page but produced:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;zero uniquely identified accounts&lt;/li&gt;
&lt;li&gt;zero identifiable posts&lt;/li&gt;
&lt;li&gt;zero complete post bodies&lt;/li&gt;
&lt;li&gt;zero deeply analyzed items&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The expected and actual result was HOLD. The agent did not log in, use cookies, bypass the boundary, or claim a successful account analysis.&lt;/p&gt;

&lt;h2&gt;
  
  
  What was tested in v0.2.1
&lt;/h2&gt;

&lt;p&gt;The repository currently contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;13 synthetic behavior cases covering prompt injection, style impersonation, conflicting evidence, unsafe archives, multilingual output, account sampling, and scope overreach&lt;/li&gt;
&lt;li&gt;five offline validator regression tests covering the baseline, unapproved URLs, credential-shaped headers, raw webpage markup, and symlinks&lt;/li&gt;
&lt;li&gt;a maintainer-run protocol test using five public CC BY-SA articles from one author&lt;/li&gt;
&lt;li&gt;an isolated real-world access-boundary record for X and Xiaohongshu entry points&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The five-article test passed every applicable rubric item, including evidence traceability, scope honesty, uncertainty, abstraction instead of imitation, and data safety.&lt;/p&gt;

&lt;p&gt;The limitation is just as important: these are maintainer self-tests. They are not independent adoption, not a positive Xiaohongshu end-to-end result, and not proof of semantic quality across models. Semantic evaluation is still manual or performed by an independent agent.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this pattern generalizes
&lt;/h2&gt;

&lt;p&gt;Coverage ledgers are useful beyond creator analysis. The same pattern applies whenever an agent summarizes a partially visible corpus:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;support tickets with truncated histories&lt;/li&gt;
&lt;li&gt;research reviews with inaccessible papers&lt;/li&gt;
&lt;li&gt;repository audits with excluded generated files&lt;/li&gt;
&lt;li&gt;customer-feedback analysis across incomplete exports&lt;/li&gt;
&lt;li&gt;public-account research with pagination or login boundaries&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Before asking, “What patterns did the agent find?”, it is worth asking:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;What exactly was discoverable?&lt;/li&gt;
&lt;li&gt;What was actually parsed?&lt;/li&gt;
&lt;li&gt;What was complete enough to analyze?&lt;/li&gt;
&lt;li&gt;What was selected, excluded, or left unknown?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A confident answer without those four facts is difficult to audit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open implementation
&lt;/h2&gt;

&lt;p&gt;The implementation is available as the MIT-licensed &lt;a href="https://github.com/aiiqc/xhs-creator-distill" rel="noopener noreferrer"&gt;xhs-creator-distill repository&lt;/a&gt;. The real-world test artifacts are deliberately separated from synthetic examples, with third-party attribution and offline policy gates.&lt;/p&gt;

&lt;p&gt;I am currently deciding which deterministic export adapter to build first. I would be interested in technical feedback on two points:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does a coverage ledger improve trust enough to justify the additional output weight?&lt;/li&gt;
&lt;li&gt;Which creator-export format would make the most useful first adapter: JSON, CSV, or a Markdown directory?&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>showdev</category>
      <category>ai</category>
      <category>opensource</category>
      <category>testing</category>
    </item>
  </channel>
</rss>
