Skip to content

Instantly share code, notes, and snippets.

@MuhammadYossry
MuhammadYossry / AgentSWEOS_vNext.md
Last active May 10, 2026 09:28
Draft: A Phase-Oriented Software Engineering Runtime for Probabilistic Agents

AgentSWEOS vNext

A Phase-Oriented Software Engineering Runtime for LLM Coding Agents

"Human teams compensate for incomplete docs with meetings, intuition, and shared mental models. LLM systems cannot. Therefore every artifact is a coordination layer, and every phase is a contract."


The Core Premise

@MuhammadYossry
MuhammadYossry / agent_mas_draft.md
Last active May 5, 2026 17:33
The Minimal Agent Specification (MAS) Draft

The Minimal Agent Specification (MAS)

One File. Few Tokens. Any Agent.

While working on AgentOS I came across this problem: You have 20 specialist agents. Your orchestrator needs to know: Who are they? What can they do? Where's their state?

You don't want to load 20 full personas into memory. You don't want to parse 20,000 tokens of backstory just to route a simple task.

You want a business card. A tiny header file that tells you everything you need before you decide to have a conversation.

@MuhammadYossry
MuhammadYossry / problem_solving_nn.md
Last active May 3, 2026 17:09
Problem-Solving Techniques Inside Neural Networks, A prompted generated article for self-reading

Problem-Solving Techniques Inside Neural Networks: A Beginner’s Guide for ML Practitioners

Machine learning often looks like magic from the outside. You feed data into a model, train it long enough, and somehow it begins recognizing images, translating languages, or predicting outcomes.

But under the surface, neural networks are not magic at all.

They are built on classic problem-solving techniques that computer scientists and mathematicians have used for decades. What changed is that these strategies were combined, scaled, and optimized to work with large data and modern hardware.

For a beginner ML practitioner, understanding these techniques is more valuable than memorizing frameworks. Tools change. Principles remain.

@MuhammadYossry
MuhammadYossry / problem_solving_for_agentic.md
Last active May 3, 2026 09:21
Why Problem Solving Matters for Agentic Engineering

Why Problem Solving Matters for Agentic Engineering

Problem-solving strategies are the backbone of agentic engineering because an agentic system is fundamentally a system that must repeatedly:

  1. understand goals
  2. decompose ambiguity
  3. choose actions
  4. adapt from feedback
  5. coordinate tools / subagents
  6. improve over time
@MuhammadYossry
MuhammadYossry / AccountantAgentOS_ex.md
Last active May 2, 2026 09:40
AccountantAgentOS — Custom AgentOS Runtime Blueprint, Personal Tax Intelligence & Year-Round Accounting Assistant

AccountantAgentOS — Custom AgentOS Runtime Blueprint

Personal Tax Intelligence & Year-Round Accounting Assistant

Design philosophy: Useful over impressive. Inspectable over magical. Narrow scope. Tool-backed evidence. Human in the loop for every consequential output.


Agent Configuration

@MuhammadYossry
MuhammadYossry / AgentResearchOS_example.md
Created May 1, 2026 11:04
Example: AgentResearchOS — Custom Runtime Design

Example: AgentResearchOS — Custom Runtime Design

Prompt template instantiation for: Agent-Native Research Artifact (ARA) system
Paradigm: ARA-first, paper-as-compiled-view, failure-trace as first-class memory
Key constraints: Docker-sandboxed execution · User-supplied model · Zero documentation burden


Template Variable Decisions

@MuhammadYossry
MuhammadYossry / AgentSWEOS_blueprint.md
Created May 1, 2026 11:01
Example: AgentSWEOS Blueprint, Production-Grade Software Engineering Agent Runtime

Example: AgentSWEOS Blueprint

Production-Grade Software Engineering Agent Runtime

Design philosophy: AgentSWEOS is not a general-purpose coding assistant. It is a disciplined SWE process modeled as a containerized agent — one that applies the same structured workflows a senior engineer brings to every task, learns what actually works, and forgets what doesn't.


@MuhammadYossry
MuhammadYossry / build_agents_world_container.md
Last active May 1, 2026 13:55
Part 4: Containerizing AgentOS — Build, Customize, and Deploy a Self-Learning World-Modeling Agent

Part 4: Containerizing AgentOS — Build, Customize, and Deploy a Self-Learning World-Modeling Agent

Draft version (Revised Architecture)

"Make it reproducible, or it never happened."

image

Prerequisites:

@MuhammadYossry
MuhammadYossry / build_agents_container.md
Created April 29, 2026 15:41
Part 4: Containerizing AgentOS — Build, Customize, and Deploy Your Self‑Learning Agent(Draft)
@MuhammadYossry
MuhammadYossry / llm-agent-ipc.md
Created April 29, 2026 10:28
“The power of an agent system comes from agents that compose without coupling.” — adapted for LLM multi-agent systems

LLM Agent Filesystem — Part 2: Inter-Agent Communication

“The power of UNIX comes from the ability of programs to work together.” — Brian Kernighan

“The power of an agent system comes from agents that compose without coupling.” — adapted for LLM multi-agent systems

Prerequisite: This article extends Part 1: LLM Agent Filesystem. All file ownership rules, frontmatter conventions, budgets, and pruning policies from Part 1 still apply.