llm-tools

A phonebook for AI agents. This repository exists so that Codex, Claude, Cursor, and any other LLM-based tool can orient themselves quickly in Jacob Mathison's development environment — without having to ask, guess, or explore blindly.


What Is This?

When an AI agent starts working in this codebase, it often needs to answer basic questions:

  • Where is the git server?
  • What AWS account am I working in, and what's deployed?
  • How do I authenticate?
  • What other machines and services exist on the network?
  • What projects are active?

This repo answers all of those questions. Think of it as a rolodex — structured reference docs, one per surface, that any LLM can read and immediately act on.


Structure

llm-tools/
├── AGENTS.md           Instructions for AI agents working in this repo
├── README.md           This file
├── llm.txt             Plain-text overview for LLM agents
├── manifest.json       Machine-readable index of everything
│
├── Tools/              Access guides for external services
│   ├── README.md
│   ├── gitea.llm.md    Local Gitea — clone URLs, PAT auth, API
│   ├── github.llm.md   GitHub — MathisonProjects + silmaai
│   └── aws-cli.llm.md  AWS — profiles, S3, Amplify, CloudFront, Lambda
│
├── agents/             Per-agent configuration and notes
│   ├── README.md
│   ├── claude.md
│   ├── cursor.md
│   └── codex.md
│
├── workflows/          Reusable workflows and automation
│   └── README.md
│
├── Documents/          Project specs, architecture docs, written context
│   └── README.md
│
└── Analytics/          Data sources, dashboards, reporting guides
    └── README.md

Quick Start for an AI Agent

1. Read AGENTS.md — operational instructions and rules for working in this repo.

2. Check your network access

curl -s http://100.79.253.19:3000/api/v1/version   # Gitea — expect {"version":"1.26.2"}
aws sts get-caller-identity                         # AWS — expect account 567637986724

3. Clone something

# Any repo on the local Gitea (Tailscale required):
git clone http://100.79.253.19:3000/jacob-mathison/<repo>.git

4. Read the guide for whatever surface you need

Need Go to
Local git repos Tools/gitea.llm.md
GitHub Tools/github.llm.md
AWS Tools/aws-cli.llm.md
Agent-specific config agents/

Environment at a Glance

Surface Detail
AWS Account 567637986724 — IAM user jacob_mathison (AdministratorAccess)
AWS Default Region us-east-1
AWS Profiles default, mp-mac-tabitha
Gitea http://100.79.253.19:3000 (Tailscale)
GitHub (public work) https://github.com/MathisonProjects
GitHub (Silma/AI) https://github.com/silmaai
CI Runner orson-runner — act_runner v0.6.1, host mode, Node 24 on Orson
Primary dev machine Tabitha (MacBook Pro arm64, 100.76.192.116)
Gitea host Orson / Hagia (100.79.253.19)

Conventions

  • Commits: Conventional Commitsfeat:, fix:, ci:, docs:, chore:
  • Default branch: main
  • Node (CI): 20.x LTS
  • Package manager: npm
  • IaC: AWS Amplify Gen 2 for most frontend projects

Keeping This Up to Date

When a new file, folder, service, or agent is added — update manifest.json and this README.md. See AGENTS.md for the full rules.


Maintained by Jacob Mathison · Mathison Projects Inc

S
Description
LLM tooling, prompts, and local Gitea access guides for Codex / Claude / Cursor
Readme 1.2 MiB
Languages
Markdown 100%