Skip to content

Instantly share code, notes, and snippets.

@diluvium1
diluvium1 / FOLDER-SOP.md
Created November 4, 2025 12:41
Codespace HQ - 5/5: Folder structure & daily SOP scripts overview

πŸ“ Codespace HQ Folder Structure & Daily SOP Scripts Overview

The Codespace HQ agent workspace is designed for clarity and instant onboarding. Scripts and folders are named for easy understanding and rapid automation.

Folder Structure

.codespace-hq/
β”œβ”€β”€ agents/          # Agent definitions: workflow YAMLs or .py/.js scripts
β”‚   β”œβ”€β”€ active/      # Running/Ready agents (editable per session)
β”‚   β”œβ”€β”€ templates/   # Agent templates and examples
@diluvium1
diluvium1 / README.md
Created November 4, 2025 12:40
Codespace HQ - 4/5: README.md - AI Agent Command Center Documentation & Usage

πŸš€ Codespace HQ - AI Agent Command Center

Welcome to your fully operational, modular Codespace HQ environment! This repository enables instant deployment of AI agents (powered by Diluvium.ai) with robust Notion sync integration.

πŸ“¦ Quick start

  1. Clone repo & open in Codespaces/VS Code
  2. Codespaces auto-creates devcontainer, builds container and runs .devcontainer/init.sh (for Linux/macOS: bash .devcontainer/init.sh)
  3. Configure environment (.env) with your:
    • DILUVIUM_API_KEY
@diluvium1
diluvium1 / init.sh
Created November 4, 2025 12:35
Codespace HQ - 3/5: init.sh - Post-Create Initialization Script for Agent Setup
#!/bin/bash
# Codespace HQ - Initialization Script
# Runs after container creation to set up the AI Agent Command Center
# Path: .devcontainer/init.sh
set -e
echo "πŸš€ Codespace HQ - AI Agent Command Center Initialization"
echo "================================================="
echo ""
@diluvium1
diluvium1 / Dockerfile
Created November 4, 2025 12:33
Codespace HQ - 2/5: Dockerfile - Custom Container Image for AI Agent Development
# Codespace HQ - AI Agent Command Center
# Custom Dockerfile for enhanced development environment
# Optimized for Diluvium.ai integration and agent workflows
FROM mcr.microsoft.com/devcontainers/base:ubuntu
# Set environment variables
ENV DEBIAN_FRONTEND=noninteractive \
LANG=en_US.UTF-8 \
LANGUAGE=en_US:en \
@diluvium1
diluvium1 / devcontainer.json
Created November 4, 2025 12:32
Codespace HQ - 1/5: devcontainer.json - AI Agent Command Center Configuration
{
"name": "Codespace HQ - AI Agent Command Center",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"dockerFile": "Dockerfile",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "lts"
},
"ghcr.io/devcontainers/features/python:1": {