Getting Started with Humanet
Welcome to Humanet! This guide will help you understand the platform and create your first idea repository.
Platform Status
The Humanet platform is in active development. Currently available: CLI tool and GitHub template for structuring ideas. Coming soon: Web platform, AI validation system, collaboration features, and knowledge graph integration.
What You’ll Learn
- Core concepts and terminology
- How to create an idea repository
- Required documentation structure
- How ideas progress through lifecycles
- How to collaborate with others
Prerequisites
Before you start:
- Understanding of version control concepts (Git/GitHub helpful but not required)
- Markdown knowledge (basic formatting)
- Clear problem you want to solve or idea you want to develop
- Node.js 18+ installed (for CLI method)
Quick Start Options
Choose your preferred method to create an idea:
Option 1: CLI (Recommended)
The fastest way to get started:
npx create-humanetThe CLI will guide you through an interactive setup, creating all required files and folder structure automatically.
Advantages:
- Interactive prompts guide you through setup
- Validates your input as you go
- Creates proper folder structure instantly
- Built-in validation with
humanet validate
Option 2: GitHub Template
Use the official template repository:
- Visit github.com/TheFakeCreator/.humanet
- Click “Use this template” → “Create a new repository”
- Name your repository and clone it locally
- Edit the template files with your idea details
Advantages:
- Works without Node.js
- Full GitHub integration from the start
- Pre-configured structure
Option 3: Manual Setup
Clone the template and customize manually:
git clone https://github.com/TheFakeCreator/.humanet.git my-idea
cd my-idea
rm -rf .git
git initThen edit all files in the .humanet/ folder.
Understanding the Basics
What is an Idea Repository?
An idea repository is like a GitHub repository, but for ideas instead of code. It contains:
- Structured documentation — Required files that define your idea
- Supporting artifacts — Research, diagrams, prototypes, discussions
- Version history — Track how your idea evolves over time
- Collaboration space — Work with others transparently
The Idea Lifecycle
Ideas aren’t static. They evolve through stages:
Provisional (30 days)
↓
AI Evaluation
↓
Validated
↓
Active Development
↓
Complete/ArchivedEach stage has specific requirements and validation criteria.
Your First Idea
Ready to create your first idea?
Using the CLI:
npx create-humanetFollow the interactive prompts, then:
Quick Checklist
- Run
npx create-humanetor use GitHub template - Identify a clear problem to solve
- Edit
.humanet/problem_statement.md - Edit
.humanet/idea.mdwith your solution - Edit
.humanet/scope.mdwith boundaries and success criteria - Run
humanet validateto check your work (if using CLI) - Commit and push to GitHub
- Submit for validation on Humanet platform
Detailed guide: Create Your First Idea →
Next Steps
Core Concepts
Deep dive into idea repositories, lifecycles, and collaboration features.
Standards & Guidelines
Learn about documentation standards, diagramming conventions, and best practices.
Contributing Guide
Understand how to contribute to existing ideas and collaborate effectively.
Need Help?
- Documentation — Browse the concepts and guides sections
- Community — Join discussions and ask questions
- Examples — Check out sample idea repositories
- Support — Reach out if you’re stuck
Let’s build something amazing together!