This repository contains the public MDX article source for Taopedia, a Bittensor-focused knowledge base.
Live site:
Website app:
https://github.com/e35ventura/taopedia
- Contributors add and edit articles here.
- Articles are stored as MDX under
content/pages. - The Taopedia website syncs Bittensor-scoped articles from this repo during the site build.
- Contributor PRs target
test. - Maintainers promote
testtomainafter review.
If you want to change the website UI, routing, styling, search, or deployment config, use
taopedia. If you want to improve Taopedia's knowledge base, use this repo.
Good changes for this repo include:
- New Bittensor articles.
- Corrections to existing articles.
- Better sources for factual or technical claims.
- Local images or diagrams that clarify an article.
- Category or tag improvements.
- Concision edits that remove repetition or filler.
Articles should be factual, sourced, concise, and useful to builders, validators, miners, and TAO holders.
Each article gets its own folder:
content/pages/<slug>/index.mdxOptional images or supporting files can live beside the article:
content/pages/<slug>/
index.mdx
diagram.pngReference local assets with relative paths:
---
title: "Your Article Title"
summary: "One clear sentence describing the article."
category: "Wallets"
tags: ["Bittensor", "Wallets"]
---Required fields:
title: Display title.summary: Short description used in listings and search.category: One primary topic. Do not useBittensoras a catch-all category.tags: Zero to three tags. IncludeBittensorfor articles that should publish to Taopedia.
Optional fields:
featureddraftinfoboxTitleinfoboxCaptioninfoboxImageinfoboxRows
Taopedia publishes articles when:
- the slug is
taopedia; - or
tagsincludesBittensor.
General sample articles can remain in this repo, but they do not appear on Taopedia unless they match the publication rules. Categories can be added over time without changing website sync logic.
Sources are required for factual and technical claims. Prefer:
- Current implementation code, official protocol repos, and release notes.
- Official Bittensor/OpenTensor docs.
- Maintainer-authored specs or documentation.
- Reputable third-party explainers for background only.
When docs and code disagree, implementation code is the source of truth for implementation behavior.
npm install
npm run format:check
npm run validate
npm run build:indexRead CONTRIBUTING.md before opening a PR.