Skip to content

fellanH/origin-assistant

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8,559 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Origin

Personal AI assistant built on OpenClaw

MIT License

Origin is a personal fork of OpenClaw — streamlined, de-branded, and optimized as a neutral template for building your own AI assistant.

Why Origin?

  • Clean slate — Stripped of upstream branding and opinions
  • Simpler setup — Clearer docs for non-technical users
  • Your baseline — Fork it and make it yours

Want the full-featured project? Use upstream OpenClaw instead.

Quick Start

Requirements: Node 22+

git clone https://github.com/FellanH/origin.git
cd origin
./scripts/quickstart.sh

This will install dependencies, build the project, create a origin alias, and run the onboarding wizard.

After setup: origin <command>

Manual Setup

git clone https://github.com/FellanH/origin.git
cd origin
pnpm install
pnpm build

Running Commands

# Via pnpm (runs TypeScript directly)
pnpm openclaw <command>

# Via node
node dist/entry-bootstrap.js <command>

# Via alias (add to ~/.bashrc or ~/.zshrc)
alias origin='node /path/to/origin/dist/entry-bootstrap.js'

Note: The global openclaw command (from npm install -g openclaw) runs the upstream package, not your fork.

Install Gateway Service (optional)

node dist/entry-bootstrap.js gateway install

Creates a LaunchAgent (macOS) or systemd service (Linux) for your fork.

Onboard

origin onboard

Configuration

Config lives at ~/.openclaw/openclaw.json:

{
  "agent": {
    "model": "anthropic/claude-opus-4-5"
  }
}

Avoiding Conflicts

Scenario Solution
Global openclaw runs upstream Use pnpm openclaw or node dist/entry-bootstrap.js
Gateway runs wrong version Reinstall with node dist/entry-bootstrap.js gateway install
Want complete isolation Set OPENCLAW_HOME to a different directory

Development

See DEVELOPMENT.md for customization, adding channels/tools, and project structure.

./scripts/dev-helper.sh          # Show commands
./scripts/dev-helper.sh gateway  # Start gateway
./scripts/dev-helper.sh test     # Run tests

Documentation

Full docs at upstream: docs.openclaw.ai

Upstream

Fork of OpenClaw by Peter Steinberger and the community.

License

MIT

About

A lightweight, de-branded fork of OpenClaw/Clawdbot designed as a neutral baseline template for building your own AI assistant.

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 83.1%
  • Swift 12.8%
  • Kotlin 1.8%
  • Shell 0.9%
  • CSS 0.6%
  • JavaScript 0.4%
  • Other 0.4%