<?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>Forem: HariharanS</title>
    <description>The latest articles on Forem by HariharanS (@hariharans).</description>
    <link>https://forem.com/hariharans</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F175538%2F04f18786-57f2-4220-8ec5-9b73455bc42e.png</url>
      <title>Forem: HariharanS</title>
      <link>https://forem.com/hariharans</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/hariharans"/>
    <language>en</language>
    <item>
      <title>I built WikiPilot with GitHub Copilot CLI</title>
      <dc:creator>HariharanS</dc:creator>
      <pubDate>Mon, 16 Feb 2026 07:49:11 +0000</pubDate>
      <link>https://forem.com/hariharans/i-built-wikipilot-with-github-copilot-cli-2nb8</link>
      <guid>https://forem.com/hariharans/i-built-wikipilot-with-github-copilot-cli-2nb8</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/github-2026-01-21"&gt;GitHub Copilot CLI Challenge&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;## What I Built&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;WikiPilot&lt;/strong&gt;, a local-first, AI-powered CLI that generates a structured wiki for real codebases with&lt;br&gt;
  source-grounded evidence.&lt;/p&gt;

&lt;p&gt;Instead of manually writing docs that drift over time, WikiPilot analyzes repositories, extracts symbols, plans&lt;br&gt;
  pages, generates documentation, validates quality, and outputs a static viewer-ready wiki.&lt;/p&gt;

&lt;p&gt;### Key capabilities&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Evidence-first docs&lt;/strong&gt;: generated sections include source references and confidence scoring.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Incremental updates&lt;/strong&gt;: processes changed files by default, with full rebuild support.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-language analysis&lt;/strong&gt;: TypeScript/JavaScript and C# support.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Machine-readable outputs&lt;/strong&gt;: manifests, codemap, quality reports, and wiki plan artifacts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Viewer experience&lt;/strong&gt;: static docs viewer with navigation, TOC, and Mermaid support.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;### Why this matters&lt;br&gt;
   WikiPilot makes documentation more &lt;strong&gt;auditable&lt;/strong&gt;, &lt;strong&gt;repeatable&lt;/strong&gt;, and &lt;strong&gt;CI-friendly&lt;/strong&gt;, so teams can keep&lt;br&gt;
  architecture knowledge close to the code without heavy manual curation.&lt;/p&gt;

&lt;p&gt;## Demo&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Repository:&lt;/strong&gt; &lt;a href="https://github.com/HariharanS/wikipilot" rel="noopener noreferrer"&gt;https://github.com/HariharanS/wikipilot&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Screenshots:&lt;/strong&gt; 
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmic2n3uvxwsaqpabqr0o.png" alt=" " width="800" height="343"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;### Suggested walkthrough (60–90 seconds)&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Show &lt;code&gt;.wikipilot.yml&lt;/code&gt; and explain the target repo setup.&lt;/li&gt;
&lt;li&gt;Run generation (&lt;code&gt;generate&lt;/code&gt;) and show incremental + quality outputs.&lt;/li&gt;
&lt;li&gt;Open generated markdown and point to evidence/source grounding.&lt;/li&gt;
&lt;li&gt;Launch viewer (&lt;code&gt;serve --build&lt;/code&gt;) and show navigation + rendered docs.&lt;/li&gt;
&lt;li&gt;Close with one practical “before/after” outcome (time saved, clearer onboarding, etc.).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;## My Experience with GitHub Copilot CLI&lt;/p&gt;

&lt;p&gt;GitHub Copilot CLI acted like a development copilot across architecture iteration, implementation, and debugging&lt;br&gt;
  loops while building WikiPilot.&lt;/p&gt;

&lt;p&gt;I used it to speed up:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CLI command design and refactors&lt;/li&gt;
&lt;li&gt;prompt/schema iteration for generation quality&lt;/li&gt;
&lt;li&gt;debugging pipeline edge cases&lt;/li&gt;
&lt;li&gt;improving developer UX and docs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;### Example Copilot CLI workflows I used&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
   copilot "help me design a CLI flow for generate/serve/evaluate-models commands"
   copilot "review this module and suggest a safer refactor with minimal changes"
   copilot "debug why this output quality check is failing and propose a fix"
   copilot "draft docs for this command based on code behavior"
  Impact
  Copilot CLI reduced context switching, accelerated iteration on tricky parts (generation + validation), and helped

** Ran out of copilot credits **
- missing features to deploy to cloud
- use improved prompts and regenerate docs to improve quality of docs produced
  keep momentum from idea to working end-to-end tool.
  What I learned
   - Evidence-grounded AI output is much more trustworthy than free-form generation.
   - Incremental pipelines are critical for real-world repo scale.
   - Good DX (clear commands, predictable outputs, quality reports) matters as much as model quality.
  What’s next
   - Better cross-repo relationship visualization
   - More language analyzers
   - Richer interactive viewer exploration and traceability
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>devchallenge</category>
      <category>githubchallenge</category>
      <category>cli</category>
      <category>githubcopilot</category>
    </item>
  </channel>
</rss>
