Skip to main content
LOG_ON

LOG_ON Insights

Updates, guides, and expert perspectives on AI, automation, and digital transformation.

All
AI
Automation
SEO
Training
Security

Notes & Guides

AI
Development

A Codebase by an Agent, for an Agent

What happens when you let an AI agent build and maintain its own codebase? We explore the fascinating results of self-improving AI systems and what it means for Nigerian developers.

Read more about A Codebase by an Agent, for an Agent
AI
Development

Agentic Code Review: AI Reviewing AI-Generated Code

Introducing a new paradigm where AI agents review code written by other agents. Learn how to implement automated quality gates for your AI-assisted development workflow.

Read more about Agentic Code Review: AI Reviewing AI-Generated Code
AI
Strategy

From AGENT.md to AGENTS.md: Scaling AI Agent Skills

How to define, document, and reuse AI agent skills across your organization. A framework for building institutional AI knowledge in Nigerian enterprises.

Read more about From AGENT.md to AGENTS.md: Scaling AI Agent Skills
AI
Tutorial

How to Build Your First AI Agent: A Step-by-Step Guide

A comprehensive tutorial on building a fully functioning AI agent for your business. From concept to deployment, learn the complete workflow for Nigerian developers.

Read more about How to Build Your First AI Agent: A Step-by-Step Guide
Development
Documentation

Interactive Diagrams: Connecting Visuals to Your Codebase

How to create Mermaid diagrams that link directly to your code, making documentation living and interactive. A game-changer for technical teams.

Read more about Interactive Diagrams: Connecting Visuals to Your Codebase
SEO
AI

Why llms.txt Matters for AI Agent Development

Learn how the llms.txt file is a key tool for AI agent development, helping websites communicate effectively with large language models.

Read more about Why llms.txt Matters for AI Agent Development
View all guides

Latest Updates

agent.ts
const agent = new AIAgent({
model: "gemini-pro",
capabilities: ["code", "review"],
memory: true,
});
await agent.execute(task);
AI
Development

A Codebase by an Agent, for an Agent

What happens when you let an AI agent build and maintain its own codebase? We explore the fascinating results of self-improving AI systems and what it means for Nigerian developers.

Oluwamayowa LogoJan 14, 2026
review.ts
// Agentic Code Review
const review = await agent.review({
files: changedFiles,
context: pullRequest,
rules: codeStandards,
});
return review.suggestions;
AI

Agentic Code Review: AI Reviewing AI-Generated Code

Introducing a new paradigm where AI agents review code written by other agents. Learn how to implement automated quality gates for your AI-assisted development workflow.

Jan 12, 2026
benchmark.ts
// 3x Faster with Gemini Flash
const results = await benchmark({
model: "gemini-3-flash",
iterations: 1000,
});
console.log(`Speed: ${results.ms}ms`);
AI

Speed Up Your AI Workflows with Gemini Flash

How switching to faster AI models like Gemini Flash can make your workplace automation 3x faster without sacrificing quality. A practical guide for Nigerian businesses.

Jan 10, 2026
analyze.ts
const doc = await vision.analyze({
file: uploadedPDF,
extractText: true,
summarize: true,
});
return doc.insights;
AI

Visual AI: Analyzing Documents Without Context Overload

Learn how to use AI vision capabilities to analyze PDFs, images, and documents without bloating your context window. Perfect for document-heavy Nigerian businesses.

Jan 8, 2026
workflow.ts
const workflow = createWorkflow({
threads: threadManager,
labels: ["urgent", "review"],
autoAssign: true,
});
workflow.onComplete(notify);
AI

Organizing AI Workflows: Labels, Maps, and Thread Management

As AI conversations multiply, organization becomes critical. Discover strategies for labeling, mapping, and managing your AI agent interactions effectively.

Jan 5, 2026
View all articles