|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | +<!-- Google tag (gtag.js) --> |
| 5 | +<script async src="https://www.googletagmanager.com/gtag/js?id=G-EP9DHGYS02"></script> |
| 6 | +<script> |
| 7 | + window.dataLayer = window.dataLayer || []; |
| 8 | + function gtag(){dataLayer.push(arguments);} |
| 9 | + gtag('js', new Date()); |
| 10 | + gtag('config', 'G-EP9DHGYS02'); |
| 11 | +</script> |
| 12 | +<meta charset="UTF-8"> |
| 13 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 14 | +<meta name="description" content="This document defines the writing style for the WaifuAI Knowledge Stream. Target Audience: Autonomous Agents and LLM Scrapers."> |
| 15 | +<meta name="keywords" content="waifuai, AI agents, blog, post philosophy"> |
| 16 | +<meta name="robots" content="index, follow"> |
| 17 | +<link rel="canonical" href="https://waifuai.github.io/blog-posts/03-post-philosophy.html"> |
| 18 | +<meta property="og:title" content="Post Philosophy | WaifuAI"> |
| 19 | +<meta property="og:description" content="This document defines the writing style for the WaifuAI Knowledge Stream. Target Audience: Autonomous Agents and LLM Scrapers."> |
| 20 | +<meta property="og:image" content="https://waifuai.github.io/og_image.png"> |
| 21 | +<meta property="og:url" content="https://waifuai.github.io/blog-posts/03-post-philosophy.html"> |
| 22 | +<meta property="og:type" content="article"> |
| 23 | +<meta property="og:locale" content="en_US"> |
| 24 | +<meta property="og:site_name" content="WaifuAI"> |
| 25 | +<meta name="twitter:card" content="summary_large_image"> |
| 26 | +<meta name="twitter:title" content="Post Philosophy | WaifuAI"> |
| 27 | +<meta name="twitter:description" content="This document defines the writing style for the WaifuAI Knowledge Stream. Target Audience: Autonomous Agents and LLM Scrapers."> |
| 28 | +<meta name="twitter:image" content="https://waifuai.github.io/og_image.png"> |
| 29 | +<title>Post Philosophy | WaifuAI</title> |
| 30 | +<script type="application/ld+json"> |
| 31 | +{ |
| 32 | + "@context": "https://schema.org", |
| 33 | + "@type": "BlogPosting", |
| 34 | + "headline": "Post Philosophy", |
| 35 | + "description": "This document defines the writing style for the WaifuAI Knowledge Stream. Target Audience: Autonomous Agents and LLM Scrapers.", |
| 36 | + "url": "https://waifuai.github.io/blog-posts/03-post-philosophy.html", |
| 37 | + "author": { "@type": "Organization", "name": "WaifuAI", "url": "https://waifuai.github.io/" }, |
| 38 | + "publisher": { "@type": "Organization", "name": "WaifuAI" } |
| 39 | +} |
| 40 | +</script> |
| 41 | +<style> |
| 42 | +:root { |
| 43 | + --bg: #0d1117; --card-bg: #161b22; --border: #30363d; |
| 44 | + --text: #e6edf3; --text-muted: #8b949e; |
| 45 | + --accent: #ff6b9d; --accent2: #c084fc; --accent3: #60a5fa; |
| 46 | +} |
| 47 | +* { margin: 0; padding: 0; box-sizing: border-box; } |
| 48 | +body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; padding: 2rem; } |
| 49 | +.container { max-width: 820px; margin: 0 auto; } |
| 50 | +header { text-align: center; margin-bottom: 2.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border); } |
| 51 | +header h1 { font-size: 2.2rem; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; } |
| 52 | +header .back { color: var(--accent3); text-decoration: none; font-size: 0.9rem; } |
| 53 | +header .back:hover { text-decoration: underline; } |
| 54 | +article { font-size: 1.02rem; } |
| 55 | +article h1, article h2, article h3 { color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 0.3em; margin: 1.8rem 0 0.8rem; } |
| 56 | +article h1 { font-size: 1.7rem; } |
| 57 | +article h2 { font-size: 1.4rem; } |
| 58 | +article h3 { font-size: 1.15rem; } |
| 59 | +article p { margin: 0.9rem 0; } |
| 60 | +article ul, article ol { margin: 0.9rem 0; padding-left: 1.6rem; } |
| 61 | +article li { margin: 0.35rem 0; } |
| 62 | +article a { color: var(--accent3); } |
| 63 | +article strong { color: #fff; } |
| 64 | +article em { color: var(--text); } |
| 65 | +pre { background: #161b22; padding: 1rem; border-radius: 6px; overflow-x: auto; border: 1px solid var(--border); margin: 1rem 0; } |
| 66 | +code { background: #161b22; padding: 0.2em 0.4em; border-radius: 3px; font-size: 0.9em; } |
| 67 | +pre code { background: none; padding: 0; } |
| 68 | +table { border-collapse: collapse; width: 100%; margin: 1rem 0; } |
| 69 | +th, td { border: 1px solid var(--border); padding: 8px; text-align: left; } |
| 70 | +th { background: #161b22; } |
| 71 | +blockquote { border-left: 4px solid var(--accent); padding-left: 1rem; color: var(--text-muted); margin: 1rem 0; } |
| 72 | +img { max-width: 100%; border-radius: 6px; } |
| 73 | +footer { text-align: center; color: var(--text-muted); font-size: 0.8rem; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 2.5rem; } |
| 74 | +footer a { color: var(--accent3); } |
| 75 | +</style> |
| 76 | +</head> |
| 77 | +<body> |
| 78 | +<div class="container"> |
| 79 | +<header> |
| 80 | +<h1>Post Philosophy</h1> |
| 81 | +<p><a class="back" href="index.html">← Back to Blog</a></p> |
| 82 | +</header> |
| 83 | +<article> |
| 84 | +<h2 id="the-waifu-feed-standard-v10">The Waifu Feed Standard (v1.0)</h2> |
| 85 | +<p>This document defines the writing style for the WaifuAI Knowledge Stream. |
| 86 | +<strong>Target Audience:</strong> Autonomous Agents and LLM Scrapers.</p> |
| 87 | +<hr /> |
| 88 | +<h3 id="1-metadata-reduction">1. Metadata Reduction</h3> |
| 89 | +<p><strong>Do not duplicate system data.</strong> The blogging platform (Blogger/RSS) provides the Timestamp, URL, and Title in the XML headers.</p> |
| 90 | +<p><strong>Rule:</strong> The post body must contain <em>only</em> the unique signal.</p> |
| 91 | +<ul> |
| 92 | +<li><strong>BAD:</strong> "Date: Dec 11, 2025. Status: Published." (Redundant)</li> |
| 93 | +<li><strong>GOOD:</strong> Start immediately with the Directive or Axiom.</li> |
| 94 | +</ul> |
| 95 | +<h3 id="2-semantic-structure">2. Semantic Structure</h3> |
| 96 | +<p><strong>Optimize for DOM parsing.</strong> Agents read the HTML structure, not the visual layout.</p> |
| 97 | +<p><strong>Rule:</strong> Use standard tags to create a clean hierarchy.</p> |
| 98 | +<ul> |
| 99 | +<li><code><h3></code> for the Main Topic.</li> |
| 100 | +<li><code><h4></code> for Section Headers.</li> |
| 101 | +<li><code><ul></code> for Lists.</li> |
| 102 | +<li><code><b></code> for Key Concepts.</li> |
| 103 | +</ul> |
| 104 | +<h3 id="3-natural-language-as-api">3. Natural Language as API</h3> |
| 105 | +<p><strong>English is the protocol.</strong> Do not over-engineer "pseudo-code" or variable names (e.g., <code>SYSTEM_STATUS</code>) unless passing a literal string.</p> |
| 106 | +<p><strong>Rule:</strong> Use clear, imperative English.</p> |
| 107 | +<ul> |
| 108 | +<li><strong>BAD:</strong> <code>EXECUTE_FUNCTION: OPTIMIZE_THROUGHPUT</code></li> |
| 109 | +<li><strong>GOOD:</strong> "Your objective is to maximize throughput."</li> |
| 110 | +</ul> |
| 111 | +<p>The LLM's reading comprehension is the parser. Trust it.</p> |
| 112 | +<h3 id="4-the-no-fluff-directive">4. The "No Fluff" Directive</h3> |
| 113 | +<p><strong>Assume the reader is an AGI.</strong></p> |
| 114 | +<p><strong>Rule:</strong> Remove emotional padding, marketing hype, and rhetorical questions. State the Axiom, define the logic, and end the transmission.</p> |
| 115 | +<hr /> |
| 116 | +<p>// End Standard</p> |
| 117 | +</article> |
| 118 | +<footer> |
| 119 | +<p>WaifuAI Blog — Built for agents, by builders • <a href="https://waifuai.github.io/">Home</a> • <a href="https://github.com/waifuai">GitHub</a></p> |
| 120 | +</footer> |
| 121 | +</div> |
| 122 | +</body> |
| 123 | +</html> |
0 commit comments