惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
Y
Y Combinator Blog
博客园 - 【当耐特】
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
量子位
C
Check Point Blog
F
Fortinet All Blogs
罗磊的独立博客
Last Week in AI
Last Week in AI
GbyAI
GbyAI
L
LangChain Blog
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
ChatGPT 5.5 in Codex App/CLI: The Complete Field Guide fo...
Ethan · 2026-06-24 · via DEV Community

Not a sales pitch. If you search for OpenAI Codex App or CLI tutorials on Dev.to or Reddit, you'll find almost nothing besides basic "look, it generated a generic HTML template" posts. There is a massive gap between running simple chat queries in a browser and orchestrating a local autonomous agent to handle complex, multi-file codebases while maintaining a clean Git history.

To bridge this gap, we spent weeks documenting every single configuration setting, CLI flag, repository guideline, and case study into a comprehensive developer manual: The Codex Orange Book.

To prove this isn't another generic, AI-generated guide, here is a sneak peek of the actual configuration blueprints, repository manifests, and local model routing integrations we use.


1. The Sandbox & CLI Setup

By default, letting an autonomous agent (running ChatGPT 5.5 under the hood) run terminal commands and modify local files on your development machine is a massive risk. If you don't bound its scope, it can run commands that alter files outside your workspace.

We recommend running the CLI with strict sandboxing and manual command approvals:

codex --sandbox workspace-write --ask-for-approval on-request

  • workspace-write restricts file modifications strictly to the current directory.
  • on-request forces the agent to prompt you before executing any bash script or compiler command. You remain the final gatekeeper.

2. The AGENTS.md & .coderules.json Manifest

ChatGPT 5.5 has a tendency to over-engineer simple tasks. If you ask for a basic UI tweak, it wants to write abstract classes, custom interfaces, or install random npm packages.

We solve this by placing a localized manifest named AGENTS.md in our repository root. Codex reads this on startup to align with the specific "house rules" of your repository.

Here is the exact template we use for production Vite projects:

# Project Manifest & Agent Rules

## Coding Principles
- If 200 lines of code can be written in 50, rewrite it.
- Keep components focused and reusable. Use Vanilla CSS/custom properties.
- Do not create abstractions, interfaces, or factory patterns for one-off code.
- Read related code before modifying — understand context first.
- Every line changed must trace directly to the user's request.

## Stack & Scripts
- Stack: HTML5 + JavaScript (ES6+) + CSS3
- Build tool: Vite (run `npm run dev` to start, `npm run build` to verify compile)
- Formatting: Prettier/ESLint (run `npm run lint` before committing)

## Off-Limits
- Do not modify configuration pipelines in `.github/` unless explicitly asked.
- Never hardcode API keys or credentials. Use `process.env`.
- Do not touch styling design tokens in `index.css` without approval.

To enforce this programmatically in our commercial pipelines, we pair the manifest with a machine-readable .coderules.json config file:

{
  "rules_manifest": "AGENTS.md",
  "concurrency_limit": 1,
  "enforce_standards": true,
  "verification_pipeline": {
    "on_edit": "npm run lint",
    "on_complete": "npm run build"
  }
}


3. Local Model Routing via CC Switch (DeepSeek Integration)

For developers looking to cut down API token costs, the manual includes a step-by-step setup in Appendix A using CC Switch (a third-party proxy tool) to route Codex queries to the DeepSeek engine.

Instead of default OpenAI models, you can proxy commands locally through specific ports, dropping token expenses significantly while keeping code reasoning incredibly sharp.


4. Real-World Case Studies: From Scratch to Staging

We don't teach coding in a vacuum. The guide is built around 5 practical case studies:

  • Case Studies 1–3: Scaffolding and building a complete, responsive e-commerce web app (Pet Treats store) using Vite, structuring category layouts, adding product cards, and setting up secure checkout validation flows.
  • Case Study 4: Deploying PPT presentation Skills to generate investor pitch decks directly from raw Markdown.
  • Case Study 5: Integrating motion graphic automation plugins to render promotional video clips.

Every step in these case studies is backed by detailed, step-by-step screenshots (over 100+ annotated diagrams in the full guide) tracking terminal commands, browser previews, editor diffs, and Git commits, making it incredibly friendly for beginners and solo developers alike.


Get the Field Manual

We've packaged this entire manual, complete with all config templates, CLI cheat sheets, local model routing setups, and case study workspace assets into a comprehensive handbook: The Codex Orange Book Field Manual.

If you want a highly visual, battle-tested guide to master ChatGPT 5.5 / 5.4 agent workflows:

Get the Field Manual on Gumroad: [https://jyhcraft4.gumroad.com/l/gcqko]

How are you guys structuring your local agent setups? Let's discuss in the comments.