diff --git a/PROJECTS.yml b/PROJECTS.yml new file mode 100644 index 0000000..d829cbe --- /dev/null +++ b/PROJECTS.yml @@ -0,0 +1,8 @@ +- name: fact-verifier-extension + category: apps + owner: "@sushant041" + collaborators: [] + status: in-progress + created: 2025-08-17 + version: v0.1.0 + tags: [extension, fact-checking, cortensor, decentralized-ai] diff --git a/apps/fact-verifier-extension/README.md b/apps/fact-verifier-extension/README.md new file mode 100644 index 0000000..142d341 --- /dev/null +++ b/apps/fact-verifier-extension/README.md @@ -0,0 +1,27 @@ +# Fact Verifier Extension + +A browser extension that verifies facts and news claims using the Cortensor decentralized inference network. +It checks statements against multiple independent nodes, aggregates results, and returns a consensus-backed verdict with citations. + +## Features +- ✅ Consensus-based truth checking (multiple nodes verify claims) +- 📊 Confidence score (% agreement across nodes) +- 🔗 Source citations for transparency +- 🌐 Easy-to-use browser extension (highlight → verify → result) + +## How It Uses Cortensor +This project integrates with the **Cortensor Decentralized Inference API**. +Each verification request is processed by multiple nodes, and their responses are aggregated to ensure reliability and reduce hallucinations. + +## Installation (Dev Mode) +1. Clone this repo. +2. Navigate to `apps/fact-verifier-extension/`. +3. Load the extension in Chrome/Brave via `chrome://extensions` → **Load unpacked**. +4. Select the extension folder. + +## Roadmap +- [ ] Backend middleware to call Cortensor API +- [ ] Consensus logic (aggregate responses) +- [ ] Browser extension UI +- [ ] Confidence scoring + citations +- [ ] (Optional) On-chain notarization of results diff --git a/apps/fact-verifier-extension/RELEASE.md b/apps/fact-verifier-extension/RELEASE.md new file mode 100644 index 0000000..d3664ac --- /dev/null +++ b/apps/fact-verifier-extension/RELEASE.md @@ -0,0 +1,12 @@ +# Release Notes - Fact Verifier Extension + +## v0.1 (In Progress) +- Project initialized under `apps/fact-verifier-extension/` +- Added README, STATUS, RELEASE files +- Defined roadmap and basic structure + +## v1.0 (Planned) +- Working backend with Cortensor API integration +- Consensus aggregation logic +- Browser extension UI (highlight + verify) +- Demo-ready MVP diff --git a/apps/fact-verifier-extension/STATUS.md b/apps/fact-verifier-extension/STATUS.md new file mode 100644 index 0000000..e2ea2f7 --- /dev/null +++ b/apps/fact-verifier-extension/STATUS.md @@ -0,0 +1,16 @@ +# Project Status: Fact Verifier Extension + +## Current Progress +- [x] Repo forked +- [x] Project folder created +- [ ] Placeholder docs ready +- [ ] Backend design in progress + +## Next Steps +1. Implement backend middleware for Cortensor API calls. +2. Build consensus logic for True/False/Inconclusive. +3. Create browser extension UI for verification results. + +## Known Issues +- No backend implementation yet. +- No UI integration yet.