Frame

作者 kaanozhan

ADE( Agentic Development Environment) The spec-driven environment for AI coding agents, where your planning becomes lasting, shared project context.

324
Stars
32
Forks
JavaScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/kaanozhan/Frame

快速入门

使用 Frame 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Frame

Frame

Spec-driven development that becomes durable, structural context — built on Claude Code.

Website LinkedIn Latest release Total downloads License Platforms Stars

The shape of software development changed — agents write the code now — but the foundation didn't: good results still come from good planning. Frame puts planning back at the center. You write a spec once, and that single spec becomes three things at once: the plan your agents follow, a clean unit of work you can run in parallel without collisions, and the durable, shared context your project keeps across every session. Every future agent arrives knowing what was done and why — no more re-explaining your architecture every time you open a terminal.

Built on Claude Code. Codex CLI and Gemini CLI work too — and because your context lives in plain, git-versioned files, it stays yours and stays readable by any tool.

https://github.com/user-attachments/assets/6fe108d1-70c8-441e-a913-b34583c803b0


The Problem

As projects grow with AI agents, things fall apart fast:

  • Context loss — every new session starts from scratch, you re-explain the same things over and over
  • No project memory — AI doesn't know your architecture, past decisions, or pending tasks
  • No standard — every developer structures their AI projects differently, making collaboration and onboarding painful
  • Sessions bleed into each other — working on multiple projects means context gets mixed up
  • Terminal chaos — multiple windows, scattered sessions, no organization
  • Tool fragmentation — Claude, Codex, and Gemini each work differently

These problems are manageable on small projects. On larger ones, they become blockers.

Frame solves all of this.


How Frame Works

One Standard, Every Project, Every AI Tool

Frame brings a consistent structure to every project you work on. When you initialize Frame in a project, it creates:

FilePurpose
AGENTS.mdProject rules and instructions — AI reads this automatically
STRUCTURE.jsonModule map with intentIndex for fast file lookup
PROJECT_NOTES.mdArchitectural decisions and context that persist across sessions
tasks.jsonTask tracking with status, context, and acceptance criteria

Every project gets its own isolated session — its own context, its own task list, its own notes. Switching projects in Frame means switching to a completely fresh, project-specific AI context. No bleed-over, no confusion.

This standard works with any AI tool. Claude Code and Gemini CLI read these files natively. For Codex CLI, Frame injects them automatically via a wrapper script — no manual setup needed.

The result: any developer (or AI agent) who opens a Frame project immediately knows where everything is and what's been decided. Onboarding a new AI session to a large project takes seconds, not minutes.

Git Commit as the Context Anchor

One of the hardest problems in agentic development is knowing when to capture context. Session boundaries are fuzzy — you might stay in the same session for hours. Task completion is ambiguous — agents don't always signal clearly when something is done. Trying to detect "important moments" mid-session is unreliable.

Frame's approach: use git commits as the single reliable boundary.

When you commit, something real happened. It's intentional, it's deterministic, and it's a natural checkpoint you're already making. Frame builds its entire context system around this moment:

  • STRUCTURE.json — auto-updated via pre-commit hook, always reflects the current architecture
  • tasks.json — task state syncs at commit time
  • PROJECT_NOTES.md — the right moment to capture what changed and why

When the next session starts, these files are read automatically. The agent picks up exactly where things left off — not from a vague session transcript, but from structured, up-to-date context written at the one moment you can be certain something real was completed.

The practical implication: commit often. Small, intentional commits aren't just good git hygiene — in Frame, they're how context stays accurate and agents stay oriented.

Spec-Driven Development

For features that won't fit in one session, Frame ships a built-in spec workflow. Each spec is four markdown files on disk:

.frame/specs/<slug>/
  spec.md      what we're building
  plan.md      how we'll build it
  tasks.md     broken-down work
  outcome.md   what actually shipped

Describe what you want and the AI drafts the spec. /spec.plan produces an implementation plan. /spec.tasks breaks the plan into discrete tasks that import into tasks.json (tagged with source: "spec:<slug>:T<n>"). /spec.implement walks them one by one — and after each task, the agent appends 2-3 sentences to outcome.md: what shipped, what diverged from the plan, what to follow up on.

That last file is the move that makes the rest worth doing. Plans tell you intent. Code tells you reality. outcome.md tells you the story between them, written while the agent's memory was fresh — the kind of context that's normally lost the moment a session ends.

Two principles shaped this:

  • Files over databases. Markdown is canonical. Any AI tool can read it without Frame, any teammate can grep it, git versions it, PRs review it.
  • On, but never forced. New projects start with spec-driven dev enabled, so the specs your AI writes show up in the Specs panel from the first session. It isn't every project's shape — one switch in Settings → Workflow turns it off (your specs stay on disk). Existing tasks.json workflows are untouched either way.

Agent Orchestration

Running agents in parallel is easy — every tool does it now. Landing their work into main without chaos is the hard part. That's what Frame's orchestration is built for: specs make features durable, orchestration makes them parallel and safe to land.

Open the Orchestrator and hand a conductor agent several ready specs. It runs them at the same time — each spec in its own git worktree, worked by its own agent, fully isolated. No two agents fighting over the same files, no half-finished work bleeding into your working tree.

The conductor doesn't guess at safety. Before running anything it reads each spec's declared footprint (the files it will touch) and only parallelizes specs that don't overlap; the rest are serialized. That guard is enforced in Frame's code, not left to the model — a spec whose footprint collides with in-flight work is refused, not merged into chaos.

The unit of parallelism is the spec, not the task. A spec's own tasks are interdependent, so one agent runs them in order; different specs are the independent units that fan out. Need more parallelism? Split the work into more specs.

When you dispatch a spec, Frame sets up its sandbox automatically — you don't run a single git command:

  • a fresh git worktree at .frame/worktrees/<slug>, branched from current HEAD (so serialized specs build on already-merged work),
  • a dedicated work branch frame/<slug>/work,
  • a worker frame (terminal) launched in that worktree, with the agent started and the spec's prompt injected.

Every worker carries a live state you watch on the pipeline rail: queued → running → done → approved, with blocked (footprint conflict — held until its predecessor merges), idle, and failed surfaced too. Each worker is a real frame — click it to drop into its terminal, answer an approval prompt, or take over by hand. When you tear a session down, Frame removes the worktrees and prunes merged branches but keeps un-merged work on its branch, so nothing is lost.

You stay in control of what lands:

  • Workers commit only to their own branch — they never push, never merge, never touch shared files (tasks.json, STRUCTURE.json, …).
  • When a worker finishes, the conductor reviews it and tells you it's ready — it does not merge on its own.
  • You review (you can test right in the worktree), then Approve. Frame runs a drift check — what the agent actually changed vs. what it declared — and merges locally into a per-spec integration branch. main is never touched; promoting it or opening a PR stays your call.

It all lives on one screen: the conductor's terminal (talk to it directly), the pipeline rail across the top, your worker lanes, and the spec rail to assign more — a cockpit, not a black box. Because no real task finishes in one shot and an agent may need your approval mid-run, you can always step into any frame and keep working by hand.

Honest framing: this is guardrailed, human-steered parallelism — not fire-and-forget automation. The conductor proposes and isolates; you decide what merges. That's the point.

Fast File Lookup

Instead of scanning the entire codebase, Frame's intentIndex maps concepts to files:

node scripts/find-module.js github    # → githubManager.js + githubPanel.js
node scripts/find-module.js terminal  # → all terminal-related files
node scripts/find-module.js --list    # → all features and their files

This means AI agents spend zero time searching — they go directly to the right file.

Multi-AI Support

Switch between AI tools without leaving Frame:

  • Claude Code — reads CLAUDE.md natively (symlink to AGENTS.md)
  • Codex CLI — wrapper script at .frame/bin/codex injects AGENTS.md as initial prompt
  • Gemini CLI — reads GEMINI.md natively

Multi-AI is a principle here, not a race: Frame goes deep on Claude Code, and keeps your specs, plans, outcomes, and notes in plain markdown and JSON — so the context your work produces outlives any single tool, including Frame.


Features

Terminal

  • Up to 9 terminals in a single window — tab view or 2x1, 2x2, 3x1, 3x2, 3x3 grid
  • Real PTY via node-pty — not a fake terminal, full VT100/ANSI support
  • Project-aware sessions — terminal starts in your selected project directory
  • Resizable grid — drag borders to adjust layout

Project Management

  • Task Panel — visual task tracking with filters, status management, and "Send to Claude" integration
  • Specs Panel — spec-driven workflow with phase lifecycle (spec → plan → tasks → outcome) and slash-command handoff to your AI tool
  • GitHub Panel — issues, PRs, branches, and labels directly in the sidebar
  • Git Branches — view, switch, create, and manage branches and worktrees
  • Plugins Panel — browse, enable/disable, and install Claude Code plugins

Orchestration

  • Parallel spec execution — a conductor agent runs multiple ready specs at once, each worker in its own git worktree
  • Code-enforced isolation — footprint conflict guard, per-spec branches, drift-checked local merges; main is never touched
  • Live cockpit — pipeline rail + worker lanes with per-worker Open / Approve / Remove
  • You approve — the conductor reviews and reports; nothing merges without your review

Context & Architecture

  • STRUCTURE.json — auto-updated on every commit via pre-commit hooks
  • Overview Panel — visual structure map of your project's modules
  • Session Notes — automatic prompts to save important decisions to PROJECT_NOTES.md
  • Prompt History — all terminal input logged with timestamps

Multi-AI

  • AI Tool Selector — switch between Claude Code, Codex CLI, and Gemini CLI
  • Automatic context injection — every AI tool gets your project context on startup
  • Tool-specific commands — menu adapts to the active AI tool

Under the Hood

  • 120+ IPC channels powering real-time bidirectional communication between renderer and main process
  • 40+ modules across main and renderer processes
  • Pre-commit hooks for automatic STRUCTURE.json updates
  • Transport layer abstraction — architecture designed for Electron IPC → WebSocket migration (web platform coming)

Tech Stack

ComponentTechnology
Desktop FrameworkElectron
Terminal Emulatorxterm.js
PTYnode-pty
Bundleresbuild
UIHTML/CSS/JS

Installation

Prerequisites

Steps

git clone https://github.com/kaanozhan/Frame.git
cd Frame
npm install
npm run dev

Download

Pre-built binaries available on the releases page for macOS, Windows, and Linux.


Usage

Basic Workflow

  1. Select a project — click "Select Project Folder" or choose from recent projects
  2. Initialize Frame — click "Initialize Frame Project" to create AGENTS.md, STRUCTURE.json, PROJECT_NOTES.md, and tasks.json
  3. Start an AI session — click "Start Claude Code" (or your chosen tool) — it launches in your project directory with full context
  4. Work — tasks are tracked, decisions are saved, context persists

Keyboard Shortcuts

ShortcutAction
Ctrl+KStart AI session
Ctrl+Shift+TNew terminal
Ctrl+Shift+WClose terminal
Ctrl+TabNext terminal
Ctrl+Shift+GToggle grid view
Ctrl+1-9Switch to terminal by number
Ctrl+Shift+HToggle history panel

Architecture

┌─────────────────────────────────────────────────┐
│              Main Process (Node.js)              │
│                                                  │
│  PTY Manager · File System · Tasks · GitHub      │
│  AI Tool Manager · Git · Plugins · Overview      │
│                                                  │
│              115+ IPC Channels                   │
└──────────────────────┬──────────────────────────┘
                       │
┌──────────────────────┴──────────────────────────┐
│              Renderer (Browser)                  │
│                                                  │
│  Multi-Terminal Grid · Sidebar · Task Panel      │
│  GitHub Panel · Structure Map · AI Selector      │
└─────────────────────────────────────────────────┘

Roadmap

Done

  • Terminal-first IDE with multi-terminal grid (up to 9)
  • Frame project structure (AGENTS.md, STRUCTURE.json, tasks.json, PROJECT_NOTES.md)
  • Multi-AI support — Claude Code, Codex CLI, Gemini CLI
  • Automatic context injection via wrapper scripts
  • Task panel with AI integration
  • GitHub panel — issues, PRs, branches
  • Git branches and worktrees panel
  • STRUCTURE.json intentIndex for fast file lookup
  • Plugins panel
  • Overview / structure map panel
  • Pre-commit hooks for automatic structure updates
  • Spec-driven development — spec / plan / tasks / outcome markdown workflow with auto-import to tasks.json
  • Agent orchestration — conductor-led parallel spec execution, each agent isolated in its own git worktree
  • Light / dark theme

In Progress

  • Prompt history as developer style profile — learning and persisting your working style across sessions
  • Web platform (Frame Server) — same experience in the browser via WebSocket transport

Planned

  • Plugin marketplace
  • Remote development (SSH)

Contributing

  1. Fork the repo
  2. Create a feature branch: git checkout -b feature/your-feature
  3. Commit: git commit -m 'Add your feature'
  4. Push: git push origin feature/your-feature
  5. Open a Pull Request

License

Apache-2.0 — see LICENSE and NOTICE


Built with Frame, using Claude Code. frame.cool

常见问题

What is Frame?

Frame is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by kaanozhan. ADE( Agentic Development Environment) The spec-driven environment for AI coding agents, where your planning becomes lasting, shared project context. It has 324 GitHub stars.

Is Frame safe to use?

Frame returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.

How do I install Frame?

Clone the repository with "git clone https://github.com/kaanozhan/Frame" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is Frame written in?

Frame is primarily written in JavaScript. It is open-source under kaanozhan on GitHub, so you can review or fork the full source.

Are there alternatives to Frame?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Frame against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情