Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions PROJECTS.yml
Original file line number Diff line number Diff line change
@@ -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]
27 changes: 27 additions & 0 deletions apps/fact-verifier-extension/README.md
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions apps/fact-verifier-extension/RELEASE.md
Original file line number Diff line number Diff line change
@@ -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
16 changes: 16 additions & 0 deletions apps/fact-verifier-extension/STATUS.md
Original file line number Diff line number Diff line change
@@ -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.