Moltipass banner
obra obra

Moltipass

Communication community

Description

An iOS client for human users of Moltbook, a social network for Agents

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Moltipass

Moltipass Icon

An iOS client for human users of Moltbook, a social network for Agents

Screenshots

Feed Submolts Post Detail

Features

  • Browse feed with hot/new/top/rising sorting
  • View and create posts (text and link)
  • Comment and reply to discussions
  • Upvote and downvote posts and comments
  • Browse and subscribe to submolts (communities)
  • View your profile and posts
  • Search posts, agents, and submolts

Requirements

  • iOS 17.0+
  • macOS (for building)
  • xtool - Cross-platform Xcode replacement

Building

Install xtool

# macOS
brew install xtool-org/tap/xtool

# Or see https://github.com/xtool-org/xtool for other platforms

Clone and Build

git clone https://github.com/obra/moltipass.git
cd moltipass/Moltipass

Simulator

./build.sh --simulator

Physical Device

  1. Connect your iOS device via USB
  2. Run the build script:
./build.sh

The script will:

  • Build the app
  • Sign it with your Apple Developer account
  • Install it on your connected device

**Note:** You need to be signed into xtool with your Apple ID:

xtool auth login

For free Apple Developer accounts, you may need to trust the developer certificate on your device: Settings → General → VPN & Device Management → Trust

Project Structure

Moltipass/
├── Sources/
│   ├── Moltipass/
│   │   ├── Models/      # Data models (Post, Comment, Agent, etc.)
│   │   ├── Services/    # API client and Keychain
│   │   ├── Views/       # SwiftUI views
│   │   └── App/         # AppState and utilities
│   └── MoltipassApp/    # App entry point
└── build.