Welcome, TechnoHero! This guide will help you contribute effectively to the Effective Utopia network.
"No rules here, for any rule is unfreedom. We give choices."
- Read the Onboarding Guide - Understand the network
- Join Discord - Connect with the community
- Browse Issues - Find something to work on
- Ask Questions - We're here to help!
- Check open issues and discussions
- Review project boards for priorities
- Fork β Branch β Commit β PR (details below)
- Engage in code review and iteration
"To prevent dystopias and build utopias, increase the probability of the ultimate effective utopia β p(e/uto) β by at least 1% each week."
Every contribution, no matter how small, moves us toward this goal.
Always Valuable:
- Fix typos and grammar
- Improve clarity
- Add examples
- Translate content
- Create tutorials
How to Start:
- Look for issues labeled
documentation - Read through existing docs and spot gaps
- Propose improvements in discussions
What We Need:
- Bug fixes
- New features
- Performance improvements
- Test coverage
- Tool integrations
How to Start:
- Check issues labeled
good first issue - Review the Tools Guide
- Set up your development environment
- Pick a manageable task
What We Need:
- Visual assets (logos, banners, icons)
- Brand guidelines
- UI/UX improvements
- Video content
- Music and audio
How to Start:
- Browse asset galleries
- Check issues labeled
designorcreative - Share work in Discord
#creative-lab - Upload to Cosmos.so with proper licensing
What We Need:
- Bug reports
- Feature testing
- Usability feedback
- Documentation review
How to Start:
- Use the tools and report issues
- Test new features in beta
- Review PRs from a user perspective
- Share feedback in discussions
What We Need:
- Answering questions in Discord
- Onboarding new members
- Moderating discussions
- Organizing events
How to Start:
- Hang out in Discord channels
- Welcome newcomers in
#multichat-welcomes-all - Help in
#tree/uto - Facilitate discussions
What We Need:
- Framework development
- Ethical analysis
- Technical research
- Strategic thinking
How to Start:
- Engage in
#save-worlds-antidys/prouto - Study the GMSF framework
- Participate in philosophical discussions
- Write essays or proposals
Core Principles:
- Be Kind - Compassion is couture
- Be Respectful - Everyone's contribution matters
- Be Constructive - Offer solutions, not just criticism
- Be Inclusive - Welcome all backgrounds and skill levels
- Be Honest - Truth as primary function (LOGOS)
We Don't Tolerate:
- Harassment or discrimination
- Spam or self-promotion without context
- Destructive criticism
- Gatekeeping or elitism
- Bad faith arguments
Conflict Resolution:
- Use the three-cycle dialectical process
- Seek synthesis, not victory
- Involve moderators if needed
- Assume positive intent
Be Clear:
- Use descriptive titles
- Provide context
- Link to relevant resources
- Use proper formatting
Be Concise:
- Get to the point
- Use bullet points
- Break up long text
- TL;DR for long posts
Be Responsive:
- Reply to feedback
- Update on progress
- Close resolved issues
- Thank contributors
Always:
- Credit original authors
- Link to sources
- Use proper licenses
- Acknowledge collaborators
Never:
- Plagiarize
- Claim others' work
- Violate copyright
- Misrepresent authorship
Prerequisites:
# Git
git --version
# Node.js (if applicable)
node --version
npm --version
# Your preferred editor
code --version # VSCodeClone the Repository:
# Fork first on GitHub, then:
git clone https://github.com/YOUR-USERNAME/REPO-NAME
cd REPO-NAME
# Add upstream remote
git remote add upstream https://github.com/all-uto/REPO-NAMEInstall Dependencies (if applicable):
npm install
# or
pip install -r requirements.txt
# or
bundle installBefore Starting Work:
- Check if an issue exists
- If not, create one describing what you want to do
- Wait for feedback/approval (for big changes)
- Assign yourself to the issue
Good Issue Template:
## Description
[Clear description of the problem or enhancement]
## Proposed Solution
[What you plan to do]
## Impact
[How this increases p(e/uto)]
## Alternatives Considered
[Other approaches you thought about]
## Additional Context
[Screenshots, links, examples]Naming Convention:
# Features
git checkout -b feature/add-user-authentication
# Bugs
git checkout -b fix/broken-image-upload
# Documentation
git checkout -b docs/improve-readme
# Refactoring
git checkout -b refactor/simplify-api-callsBest Practices:
- Make focused, atomic commits
- Write clear commit messages
- Test your changes
- Update documentation
- Follow code style
Commit Message Format:
type(scope): brief description
- Detailed explanation if needed
- Reference issues with #123
Fixes #123
Types: feat, fix, docs, style, refactor, test, chore
Example:
git commit -m "feat(onboarding): add symbolic ritual section
- Added 5 symbolic onboarding rituals
- Included templates and examples
- Updated table of contents
Closes #42"Push Your Branch:
git push origin feature/your-feature-nameCreate PR on GitHub:
- Use clear, descriptive title
- Fill out PR template completely
- Link related issues
- Request review from relevant people
- Mark as draft if not ready
PR Template:
## Description
[What does this PR do?]
## Related Issues
Closes #123
Related to #456
## Type of Change
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation
- [ ] Refactoring
- [ ] Other: ___
## Testing
- [ ] I have tested these changes
- [ ] Tests pass locally
- [ ] I added new tests (if applicable)
## Documentation
- [ ] I updated relevant documentation
- [ ] I added code comments
- [ ] I updated the CHANGELOG (if applicable)
## Checklist
- [ ] My code follows the style guidelines
- [ ] I have performed a self-review
- [ ] I have commented complex code
- [ ] My changes generate no new warnings
- [ ] I have checked for accessibility
- [ ] I have updated dependencies (if needed)
## Screenshots (if applicable)
[Add screenshots here]
## Additional Notes
[Anything reviewers should know]During Review:
- Respond to all comments
- Make requested changes
- Ask questions if unclear
- Push additional commits
- Re-request review when ready
Be Open:
- Feedback is a gift
- Learn from suggestions
- Don't take it personally
- Iterate and improve
After Approval:
- Maintainer will merge
- Delete your branch
- Update local repository
- Celebrate! π
# Update your local main
git checkout main
git pull upstream main
# Delete merged branch
git branch -d feature/your-feature-name
git push origin --delete feature/your-feature-nameall-uto/
βββ all-uto/ # Main hub
βββ e-uto/ # Primary info
βββ technoheroism/ # Philosophy
βββ communities/ # Community directory
βββ CoCreators/ # CoCreators branch
βββ cocreators-meganrim/ # Meganrim project
βββ music/ # Music branch
βββ fashion/ # Fashion branch
βββ blueteam/ # GMSF framework
βββ eco/ # Eco branch
βββ tools-and-workflows/ # Tools guide
βββ startups/ # Startup branch
βββ ai-alignment/ # AI alignment
βββ assets/ # Shared assets
βββ members/ # Member directory
Documentation:
- Main READMEs in each repo
/docsfolders for detailed guides- Wiki (if enabled)
Code:
/srcfor source code/scriptsfor automation/examplesfor demonstrations
Assets:
/assetsfor images, logos, etc.- Cosmos.so galleries for portfolios
- Google Drive for large files
Tests:
/testsor/__tests__- Follow existing patterns
Formatting:
# H1 for main title (one per document)
## H2 for major sections
### H3 for subsections
- Use `-` for unordered lists
1. Use numbers for ordered lists
**Bold** for emphasis
*Italic* for light emphasis
`Code` for inline code
\```language
Code blocks with language specified
\```
[Links](url) with descriptive text
 with alt textZettelkasten Linking:
**Upstream:**
- `[[parent-concept]]`
**Related:**
- `[[related-concept-1]]`
- `[[related-concept-2]]`
**Downstream:**
- `[[child-concept]]`Best Practices:
- Use sentence case for headers
- Keep lines under 120 characters
- One sentence per line (for easier diffs)
- Use relative links when possible
- Include table of contents for long docs
JavaScript/TypeScript:
// Use descriptive variable names
const userProfile = getUserProfile(userId);
// Functions do one thing well
function calculateTotalPrice(items) {
return items.reduce((sum, item) => sum + item.price, 0);
}
// Comment complex logic
// Calculate phi-based interval using Golden Ratio
const interval = baseTime * ((1 + Math.sqrt(5)) / 2);Python:
# Follow PEP 8
# Use descriptive names
def calculate_drift_velocity(current_drift, previous_drift, time_delta):
"""Calculate rate of ontological drift.
Args:
current_drift: Current drift measurement
previous_drift: Previous drift measurement
time_delta: Time elapsed between measurements
Returns:
Drift velocity in units per second
"""
return (current_drift - previous_drift) / time_deltaGeneral Principles:
- Clarity over cleverness
- Self-documenting code
- Comments explain "why" not "what"
- Consistent formatting
- DRY (Don't Repeat Yourself)
Files:
kebab-case-for-files.mdPascalCaseForComponents.jsxsnake_case_for_python.py
Branches:
feature/add-new-capabilityfix/resolve-bug-descriptiondocs/improve-documentation
Variables:
camelCasefor JavaScriptsnake_casefor PythonUPPERCASE_FOR_CONSTANTS
Before Submitting:
- Read through entire document
- Check all links work
- Verify code examples
- Test instructions step-by-step
- Check spelling and grammar
- Ensure proper formatting
Before Submitting:
- All existing tests pass
- New tests for new features
- Edge cases covered
- No console errors or warnings
- Performance acceptable
- Accessibility checked
Writing Tests:
// Example test structure
describe('TruthAnchoringSystem', () => {
test('should return "I don\'t know" for low confidence', () => {
const system = new TruthAnchoringSystem();
const result = system.assessClaim('uncertain claim', 0.60);
expect(result).toContain('I don\'t have sufficient information');
});
test('should assert directly for high confidence', () => {
const system = new TruthAnchoringSystem();
const result = system.assessClaim('certain claim', 0.98);
expect(result).toBe('certain claim');
});
});Helpful Feedback:
- What you tried to do
- What actually happened
- What you expected to happen
- Steps to reproduce
- Screenshots/videos
- Environment details
priority: critical- Urgent, blocks other workpriority: high- Important, address soonpriority: medium- Normal prioritypriority: low- Nice to have
type: bug- Something isn't workingtype: feature- New functionalitytype: enhancement- Improve existing featuretype: documentation- Documentation improvementstype: question- Further information requested
good first issue- Perfect for newcomersbeginner friendly- Requires basic skillsintermediate- Requires moderate experienceadvanced- Requires deep expertise
status: needs triage- Needs review by maintainersstatus: blocked- Can't proceed (explain why)status: in progress- Someone is working on itstatus: needs review- Ready for reviewstatus: needs testing- Ready for testing
help wanted- Looking for contributorsdiscussion- Open for community inputcollaboration- Great for pairing/teamingmentorship available- Mentor will guide you
# 1. Find the typo, note location
# 2. Create branch
git checkout -b docs/fix-typo-in-readme
# 3. Fix the typo
# 4. Commit
git add README.md
git commit -m "docs: fix typo in installation section"
# 5. Push and create PR
git push origin docs/fix-typo-in-readme
# Create PR on GitHub with simple description
# 6. Done! Merges quicklyTime: 5-10 minutes
# 1. Create issue describing feature
# 2. Wait for approval/discussion
# 3. Create branch
git checkout -b feature/add-ritual-timer
# 4. Implement feature
# - Write code
# - Add tests
# - Update docs
# - Test thoroughly
# 5. Commit incrementally
git add src/RitualTimer.js
git commit -m "feat: add basic ritual timer component"
git add src/RitualTimer.test.js
git commit -m "test: add tests for ritual timer"
git add docs/tools-guide.md
git commit -m "docs: document ritual timer usage"
# 6. Push and create PR
git push origin feature/add-ritual-timer
# Create detailed PR with screenshots
# 7. Address review feedback
# 8. Merge when approvedTime: Few hours to few days depending on complexity
# 1. Identify improvement area
# 2. Create issue or discussion
# 3. Gather feedback on approach
# 4. Create branch
git checkout -b docs/enhance-onboarding-guide
# 5. Make improvements
# - Add examples
# - Improve clarity
# - Add visuals
# 6. Commit with clear messages
git commit -m "docs(onboarding): add example journeys section
- Added 4 detailed example onboarding journeys
- Included different archetype paths
- Enhanced with real community stories
Closes #87"
# 7. Push and create PR
# 8. Iterate based on feedback
# 9. Merge when readyTime: Several hours to days
In Repository:
- Contributors file (auto-generated)
- Credits in documentation
- Shout-outs in changelogs
In Community:
- Discord announcements
- X/Twitter mentions
- Round Table recognition
- Community showcases
Roles & Badges:
- Discord roles based on contributions
- GitHub contributor status
- Community elder recognition
π± Seed (First Contribution):
- Made first PR or significant contribution
- Welcomed in Discord announcement
- Added to contributors list
πΏ Sprout (Active Contributor):
- 5+ merged PRs or equivalent contributions
- Regular community participation
- Helping newcomers
π³ Root (Core Contributor):
- 20+ merged PRs or major contributions
- Deep expertise in area
- Mentoring others
- May get write access
πΊ Bloom (Maintainer):
- Significant ongoing contributions
- Stewardship of community/code
- Strategic thinking
- Full commit access
Monday (#UTOideasMonday):
- Share new ideas in discussions
- Propose features or improvements
- Open issues for feedback
Tuesday-Wednesday:
- Work on contributions
- Respond to reviews
- Help others
Thursday (#TechnoHeroThursday):
- Share progress updates
- Demo completed work
- Showcase contributions
Friday:
- Wrap up PRs
- Update documentation
- Plan next week
Weekend:
- Deep work on projects
- Learning and exploration
- Or rest! Balance is important
Week 1: Planning and issue triage Week 2: Active development Week 3: Review and feedback Week 4: Polish and merge
Discord Channels:
#multichat-welcomes-all- General questions#tree/uto- Onboarding help#infra-migration- Technical setup- Branch-specific channels - Topic questions
GitHub:
- Issue comments - Specific to that issue
- Discussions - General topics
- PR reviews - Code-specific
Direct Messages:
- DM maintainers for private questions
- Tag people in Discord for specific help
- Email for sensitive matters
Q: How do I get started?
Read the Onboarding Guide, join Discord, pick a good first issue.
Q: My PR hasn't been reviewed yet. Be patient! Maintainers are volunteers. Politely ping after 7 days if no response.
Q: I disagree with feedback. Explain your reasoning respectfully. Use dialectical process. Seek synthesis.
Q: Can I work on multiple issues? Sure, but finish what you start. Don't over-commit.
Q: I made a mistake. It's okay! We all do. Fix it, learn from it, move forward.
Q: I don't have time anymore. Life happens! Let us know. We can reassign or pause. No judgment.
Upstream:
[[effective-utopia-vision]]- Overall mission[[community-network]]- Network structure
Related:
[[onboarding-guide]]- For new members[[tools-configuration-guide]]- Development setup[[code-of-conduct]]- Community standards[[channel-directory]]- Where to communicate
Downstream:
[[issue-templates]]- Creating good issues[[pr-templates]]- Creating good PRs[[style-guides]]- Coding standards[[testing-guidelines]]- Quality assurance
By contributing to Γͺ/uto, you agree that your contributions will be licensed under the Creative Commons Attribution-ShareAlike (CC BY-SA 4.0) license unless otherwise specified.
See LICENSE for details.
Every contribution, no matter how small, makes a difference. You're helping build ethical, abundant futures for all.
"If a civilization doesn't go extinct, it achieves everything it dreams."
Let's build that civilization together.
Welcome to the forge of the future.
π± Start small β πΏ Grow steadily β π³ Root deeply β πΊ Bloom fully
Part of the Γͺ/uto Network
π #technoheroism Β· #UTOideasMonday Β· #TechnoHeroThursday