Agentic Hub Docs
Portal & Workflows

Setup Guide

Multi-PC Setup Guide

This workspace architecture is designed to be mirrored across multiple machines. Each machine should have the same root folder structure at the drive level.

Architecture Overview

E:\
├── Dev\          MIBOS Development workspace
├── Life\         Adrian Life Management workspace
├── Work\         Adrian Mipos Work workspace
└── Agentic\      Adrian Agentic Hub (factory)

Setup Steps for a New Machine

1. Create Root Folders

mkdir E:\Dev, E:\Life, E:\Work, E:\Agentic

2. Clone Repos

Dev Workspace

git clone https://github.com/AdrianGanJY/mipos-dev-agent.git E:\Dev\.agent
git clone https://github.com/AdrianGanJY/mipos-dev-context.git E:\Dev\mipos-dev-context

Life Workspace

git clone https://github.com/AdrianGanJY/adrian-life-agent.git E:\Life\.agent
git clone https://github.com/AdrianGanJY/adrian-life-context.git E:\Life\adrian-life-context

Work Workspace

git clone https://github.com/AdrianGanJY/mipos-chief-agent.git E:\Work\.agent
git clone https://github.com/AdrianGanJY/mipos-knowledge-base.git E:\Work\mipos-kb
git clone https://github.com/AdrianGanJY/mipos-command-centre.git E:\Work\ops

Agentic Hub

git clone https://github.com/AdrianGanJY/adrian-agentic-hub.git E:\Agentic

3. Open Workspace Files

Open each .code-workspace file in VS Code:

  • E:\Dev\MIBOS Development.code-workspace
  • E:\Life\Adrian Life Management.code-workspace
  • E:\Work\Adrian Mipos Work.code-workspace
  • E:\Agentic\Adrian Agentic Hub.code-workspace

4. Initialize Obsidian Vaults

Open these folders in Obsidian to create .obsidian/ config:

  • E:\Dev\mipos-dev-context
  • E:\Life\adrian-life-context
  • E:\Work\mipos-kb
  • E:\Agentic\dashboard

5. Create Local Config

Create E:\Agentic\local-config.md (this file is gitignored — per-PC only):

# Local Config
- **PC Name**: [Your PC Name Here]
- **OS**: Windows
- **Notes**: [Any machine-specific notes]

6. Install Global Workflows

Copy global workflows from the Agentic Hub repo to the Gemini folder (machine-local, not git-tracked):

$src = "E:\Agentic\.agent\global_workflows"
$dest = "$env:USERPROFILE\.gemini\antigravity\global_workflows"
New-Item -ItemType Directory -Path $dest -Force | Out-Null
Copy-Item "$src\*" $dest -Force

Global workflows (like /improve-hub) are available across all workspaces without syncing. Master copies are stored in Agentic/.agent/global_workflows/ for version control.

Per-PC Config

Each machine has a local-config.md in E:\Agentic\ that is NOT checked into git. This file stores machine-specific info like:

  • PC name / identifier (e.g. "Adrian Mipos Server", "Adrian Laptop")
  • Machine-specific paths or overrides
  • Local environment notes

On this page