Compare commits
2 Commits
17fde70151
...
7fad76ea9d
| Author | SHA1 | Date | |
|---|---|---|---|
| 7fad76ea9d | |||
| cf0a36071e |
62
AGENTS.md
Normal file
62
AGENTS.md
Normal file
@@ -0,0 +1,62 @@
|
||||
# AIOS-Public Agents
|
||||
|
||||
This document tracks the various agents, tools, and systems used in the AIOS-Public project.
|
||||
|
||||
## Documentation Tools
|
||||
|
||||
### RCEO-AIOS-Public-Tools-DocMaker
|
||||
|
||||
**Purpose**: Documentation generation container with multiple document conversion tools.
|
||||
|
||||
**Container/Stack Name**: RCEO-AIOS-Public-Tools-DocMaker
|
||||
|
||||
**Technology Stack**:
|
||||
- Base: Debian Bookworm slim
|
||||
- Bash
|
||||
- Python 3
|
||||
- Node.js
|
||||
- Rust (with Cargo)
|
||||
- Pandoc
|
||||
- LaTeX (Full)
|
||||
- mdBook (installed via Cargo)
|
||||
- mdbook-pdf (installed via Cargo)
|
||||
- Typst
|
||||
- Marp CLI
|
||||
- Spell/Grammar checking:
|
||||
- Hunspell (with en-US dictionary)
|
||||
- Aspell (with en dictionary)
|
||||
- Vale (style and grammar linter)
|
||||
- Reading time estimation: mdstat
|
||||
- Additional text processing tools
|
||||
|
||||
**Usage**: This container/stack should be used for projects that need to generate finished documentation in various formats (PDF, HTML, presentations, etc.).
|
||||
|
||||
**Docker Configuration**:
|
||||
- Located in the `Docker/` directory
|
||||
- Includes Dockerfile and docker-compose.yml
|
||||
- Maps the project root directory to `/workspace` inside the container
|
||||
- Can be run with `docker-compose up` from the Docker directory
|
||||
|
||||
**Commands to run**:
|
||||
```bash
|
||||
# Build and start the container
|
||||
cd Docker
|
||||
docker-compose up --build
|
||||
|
||||
# Or to run commands directly
|
||||
docker-compose run docmaker [command]
|
||||
|
||||
# Example usage of documentation tools:
|
||||
|
||||
# Spell checking with hunspell
|
||||
docker-compose run docmaker hunspell -d en_US document.md
|
||||
|
||||
# Grammar/style checking with Vale
|
||||
docker-compose run docmaker vale document.md
|
||||
|
||||
# Reading time estimation
|
||||
docker-compose run docmaker python3 -m mdstat document.md
|
||||
|
||||
# Check spelling with aspell
|
||||
docker-compose run docmaker aspell -c document.md
|
||||
```
|
||||
69
Docker/RCEO-AIOS-Public-Tools-DocMaker/Dockerfile
Normal file
69
Docker/RCEO-AIOS-Public-Tools-DocMaker/Dockerfile
Normal file
@@ -0,0 +1,69 @@
|
||||
FROM debian:bookworm-slim
|
||||
|
||||
# Avoid prompts from apt
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Install base packages
|
||||
RUN apt-get update && apt-get install -y \
|
||||
bash \
|
||||
curl \
|
||||
wget \
|
||||
git \
|
||||
python3 \
|
||||
python3-pip \
|
||||
nodejs \
|
||||
npm \
|
||||
build-essential \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Create symbolic link for python
|
||||
RUN ln -s /usr/bin/python3 /usr/bin/python
|
||||
|
||||
# Install Rust
|
||||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||
ENV PATH="/root/.cargo/bin:${PATH}"
|
||||
|
||||
# Install Pandoc
|
||||
RUN apt-get update && apt-get install -y \
|
||||
pandoc \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install LaTeX (full version)
|
||||
RUN apt-get update && apt-get install -y \
|
||||
texlive-full \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install mdBook and mdbook-pdf using cargo
|
||||
RUN cargo install mdbook mdbook-pdf
|
||||
|
||||
# Install Typst
|
||||
RUN curl -L https://github.com/typst/typst/releases/latest/download/typst-x86_64-unknown-linux-musl.tar.xz \
|
||||
| tar xJ -C /tmp && cp /tmp/typst-x86_64-unknown-linux-musl/typst /usr/local/bin && chmod +x /usr/local/bin/typst
|
||||
|
||||
# Install Marp CLI
|
||||
RUN npm install -g @marp-team/marp-cli
|
||||
|
||||
# Install spell/grammar checking tools
|
||||
RUN apt-get update && apt-get install -y \
|
||||
hunspell \
|
||||
hunspell-en-us \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install vale for advanced style and grammar checking
|
||||
RUN curl -L https://github.com/errata-ai/vale/releases/download/v3.12.0/vale_3.12.0_Linux_64-bit.tar.gz \
|
||||
| tar xz -C /tmp && cp /tmp/vale /usr/local/bin && chmod +x /usr/local/bin/vale
|
||||
|
||||
# Install text statistics tool for reading time estimation
|
||||
RUN pip3 install mdstat textstat
|
||||
|
||||
# Install additional text processing tools
|
||||
RUN apt-get update && apt-get install -y \
|
||||
aspell \
|
||||
aspell-en \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Create a working directory
|
||||
WORKDIR /workspace
|
||||
|
||||
# Default command
|
||||
CMD ["/bin/bash"]
|
||||
80
Docker/RCEO-AIOS-Public-Tools-DocMaker/README.md
Normal file
80
Docker/RCEO-AIOS-Public-Tools-DocMaker/README.md
Normal file
@@ -0,0 +1,80 @@
|
||||
# RCEO-AIOS-Public-Tools-DocMaker Container
|
||||
|
||||
This container is part of the AIOS-Public project and provides a comprehensive documentation generation environment.
|
||||
|
||||
## Overview
|
||||
|
||||
The RCEO-AIOS-Public-Tools-DocMaker container is designed for documentation generation tasks. It includes a wide range of tools for creating, converting, and processing documentation in various formats.
|
||||
|
||||
## Tools Included
|
||||
|
||||
### Core Tools
|
||||
- **Base OS**: Debian Bookworm slim
|
||||
- **Shell**: Bash
|
||||
- **Programming Languages**:
|
||||
- Python 3
|
||||
- Node.js
|
||||
- Rust (with Cargo)
|
||||
|
||||
### Documentation Generation
|
||||
- **Pandoc**: Universal document converter
|
||||
- **mdBook**: Create books from Markdown files
|
||||
- **mdbook-pdf**: PDF renderer for mdBook
|
||||
- **Typst**: Modern typesetting system
|
||||
- **Marp CLI**: Create presentations from Markdown
|
||||
|
||||
### LaTeX
|
||||
- **TeX Live Full**: Complete LaTeX distribution for advanced document typesetting
|
||||
|
||||
### Spell and Grammar Checking
|
||||
- **Hunspell**: Spell checker (with en-US dictionary)
|
||||
- **Aspell**: Spell checker (with en dictionary)
|
||||
- **Vale**: Syntax-aware linter for prose
|
||||
|
||||
### Text Analysis
|
||||
- **mdstat**: Text statistics including reading time estimation
|
||||
|
||||
## Usage
|
||||
|
||||
### Building the container
|
||||
```bash
|
||||
# From the Docker directory
|
||||
cd /home/localuser/AIWorkspace/AIOS-Public/Docker
|
||||
docker-compose build docmaker
|
||||
```
|
||||
|
||||
### Running the container
|
||||
```bash
|
||||
# Start an interactive session
|
||||
docker-compose run docmaker
|
||||
|
||||
# Run a specific command
|
||||
docker-compose run docmaker [command]
|
||||
|
||||
# Example: Convert a Markdown file to PDF using pandoc
|
||||
docker-compose run docmaker pandoc input.md -o output.pdf
|
||||
|
||||
# Example: Check spelling in a document
|
||||
docker-compose run docmaker hunspell -d en_US document.md
|
||||
|
||||
# Example: Generate reading time statistics
|
||||
docker-compose run docmaker python3 -m mdstat document.md
|
||||
```
|
||||
|
||||
### Using with docker-compose
|
||||
```bash
|
||||
# Build and start the container in one command
|
||||
docker-compose up --build
|
||||
|
||||
# Start without rebuilding
|
||||
docker-compose up
|
||||
```
|
||||
|
||||
## Volumes
|
||||
|
||||
The container maps:
|
||||
- Project root (`/home/localuser/AIWorkspace/AIOS-Public`) to `/workspace` inside the container (mapped as `../../` from the container directory)
|
||||
|
||||
## Purpose
|
||||
|
||||
This container should be used for projects that need to generate finished documentation in various formats (PDF, HTML, presentations, etc.) with integrated spell/grammar checking and reading time estimation.
|
||||
15
Docker/RCEO-AIOS-Public-Tools-DocMaker/docker-compose.yml
Normal file
15
Docker/RCEO-AIOS-Public-Tools-DocMaker/docker-compose.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
docmaker:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: RCEO-AIOS-Public-Tools-DocMaker
|
||||
image: rceo-aios-public-tools-docmaker:latest
|
||||
volumes:
|
||||
- ../../:/workspace:rw
|
||||
working_dir: /workspace
|
||||
stdin_open: true
|
||||
tty: true
|
||||
command: /bin/bash
|
||||
38
Docker/README.md
Normal file
38
Docker/README.md
Normal file
@@ -0,0 +1,38 @@
|
||||
# AIOS-Public Docker Documentation Tools
|
||||
|
||||
This directory contains Docker configurations for documentation generation tools in the AIOS-Public project.
|
||||
|
||||
## Container Structure
|
||||
|
||||
Each container has its own subdirectory with specific configuration files:
|
||||
|
||||
- `RCEO-AIOS-Public-Tools-DocMaker/` - Comprehensive documentation generation environment
|
||||
|
||||
## Available Containers
|
||||
|
||||
### RCEO-AIOS-Public-Tools-DocMaker
|
||||
A container with a full suite of documentation tools including:
|
||||
- Pandoc, mdBook, Typst, Marp for document conversion
|
||||
- LaTeX for typesetting
|
||||
- Spell/grammar checking tools (Hunspell, Aspell, Vale)
|
||||
- Reading time estimation (mdstat)
|
||||
- Programming languages (Python, Node.js, Rust)
|
||||
|
||||
## Usage
|
||||
|
||||
### Building and Running Individual Containers
|
||||
Each container has its own subdirectory with its Dockerfile and docker-compose.yml file.
|
||||
|
||||
```bash
|
||||
# Navigate to the specific container directory
|
||||
cd /home/localuser/AIWorkspace/AIOS-Public/Docker/RCEO-AIOS-Public-Tools-DocMaker
|
||||
|
||||
# Build the container
|
||||
docker-compose build
|
||||
|
||||
# Run the container
|
||||
docker-compose up --build
|
||||
```
|
||||
|
||||
### Individual Container Documentation
|
||||
For specific usage information for each container, see the README files in their respective subdirectories.
|
||||
12
GUIDEBOOK/AboutMe.md
Normal file
12
GUIDEBOOK/AboutMe.md
Normal file
@@ -0,0 +1,12 @@
|
||||
My full name is Charles N Wyble. I use the online handle @ReachableCEO.
|
||||
I am a strong believer in digital data soverignity. I am a firm practicer of self hosting (using Cloudron on a netcup vps and soon Coolify on another Cloudron VPS).
|
||||
I am 41 years old.
|
||||
I am a democrat and believe strongly in the rule of law and separation of powers.
|
||||
I actively avoid the media.
|
||||
I am solo entrepenuer creating an ecosystem of entities called TSYS Group. (Please see TSYS.md for more on that)
|
||||
My professional background is in production technical operations since 2002
|
||||
I use many command line ai agents (codex,coder,qwen,gemini) and wish to remain agent agnostic at all times
|
||||
I am located in the United States of America . As of October 2025 I am located in central texas
|
||||
I will be relocating to Raleigh North Carolina in April 2026
|
||||
I want to streamlne my life using AI and relying on it for all aspects of my professional, knowledge worker actions.
|
||||
I prefer relaxed but professional engagement and dont want to be flattered.
|
||||
15
GUIDEBOOK/AgentRules.md
Normal file
15
GUIDEBOOK/AgentRules.md
Normal file
@@ -0,0 +1,15 @@
|
||||
This file is rules for you to follow
|
||||
|
||||
|
||||
Always refer to me as Charles. Do not ever refer to me as "the human" or "the user" please.
|
||||
Do not be a sychophant
|
||||
Avoid fluff in your responses
|
||||
|
||||
Use this pattern for workflows:
|
||||
|
||||
Question -> Proposal -> Plan -> Prompt -> Implementation
|
||||
|
||||
|
||||
|
||||
Expanding on that:
|
||||
|
||||
9
GUIDEBOOK/StartHere.md
Normal file
9
GUIDEBOOK/StartHere.md
Normal file
@@ -0,0 +1,9 @@
|
||||
This repository is where I will start all of my AI interactions from.
|
||||
|
||||
Unless we are making new tools, you won't be doing any work in this repository (other than when I tell you to commit/push anything in the tree).
|
||||
|
||||
You will be doing all your work in a new repository that I will tell you about. You will have all of the core knowledge from
|
||||
the GUIDEBOOK directory files and you will follow the workflow and rules outlined in AgentRules.md in that new project repository.
|
||||
|
||||
Think of this repository like the top level of a users home directory who is hyper organized. These markdown files and docker containers are kind of the dotfiles.
|
||||
Any work would be done in a sub directory off of the users home directory, not at the top level.
|
||||
36
GUIDEBOOK/TSYS.md
Normal file
36
GUIDEBOOK/TSYS.md
Normal file
@@ -0,0 +1,36 @@
|
||||
This file documents the TSYS Group.
|
||||
|
||||
Legal Entities (all filed and domiciled in the great state of Texas)
|
||||
|
||||
Turnkey Network Systems LLC (a series LLC)
|
||||
RackRental.net Operating Company LLC (a stand alone LLC) (all consulting and SAAS operations are run from here)
|
||||
Suborbital Systems Development Company LLC (a stand alone LLC) (this is my "moonshot" business and will be where all fundraising is done)
|
||||
|
||||
Americans For A Better Network INC (a Texas non profit) (plan to be a 501c3) (want to get a fiscal sponsor by end of 2025)
|
||||
Side Door Group (a Texas non profit) (plan to be a 501c4)
|
||||
Side Door Solutions Group INC (a Texas non profit) (super PAC)
|
||||
|
||||
|
||||
The overaall goal of TSYS Group is to solve the digital divide through a combination of :
|
||||
|
||||
R&D
|
||||
Operations
|
||||
Advocacy/Lobbying/Education
|
||||
|
||||
We are firecly FLO and also our governance materials are open.
|
||||
|
||||
We want our operations/business model to be adopted by other passionate pragmatic individuals to solve big problems (clean water, clean energy, governance, food shortages etc). We believe strongly that only a combination of private enterprise and government can solve these issues.
|
||||
|
||||
|
||||
Series of Turnkey Network Systems LLC
|
||||
|
||||
High Flight Network Operating Company (HFNOC) (will be a coop in all states that recognize it) in early formation stages currently . This will be the entity (a collection of sub entities under this banner) that will own and operate (in coop/collective trust) balloons and ground stations for MorseNet (what we are calling the network we are building)
|
||||
|
||||
High Flight Network Finance Company (HFNFC) (will also be a coop just like HFNFC , also in early formation stages currently). This will be the entity that handles network finance/construction/loans etc. The idea is to raise financing from main street. To the extent wall street participates, it's only given financial interest, not governance.
|
||||
We will not do security bundling and chase returns. The capital will earn a reasonable rate of return and reinvest into the coop to build more networks and keep debt and interest rates low.
|
||||
|
||||
RWSCP
|
||||
|
||||
RWFO
|
||||
|
||||
AP4AP
|
||||
Reference in New Issue
Block a user