workspace-layout

workspace-layout is a skill for Claude Code, Codex from eaglesakura/agent-skills. It costs 183 tokens per session (2,237 once invoked), scanned A, original, MIT.

A recommended workspace layout for people and coding agents, including project rules, documentation, and an .ai-agent/ working area.

In plain words
What is it for?
It is for deciding where workspace files and agent-related directories belong, and for proposing missing parts of the standard layout.
Why use it?
It reduces the effort of finding files and helps keep temporary work, plans, and shared agent information in predictable locations.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit It is for deciding where workspace files and agent-related directories belong, and for proposing missing parts of the standard layout.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eaglesakura/agent-skills/workspace-layout
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add eaglesakura/agent-skills --skill workspace-layout
Clone the repo
git clone --depth 1 https://github.com/eaglesakura/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for workspace-layout

README.md
[![agentmods](https://agentmods.dev/badge/skills/eaglesakura/agent-skills/workspace-layout.svg)](https://agentmods.dev/skills/eaglesakura/agent-skills/workspace-layout)
Your own site
<a href="https://agentmods.dev/skills/eaglesakura/agent-skills/workspace-layout"><img src="https://agentmods.dev/badge/skills/eaglesakura/agent-skills/workspace-layout.svg" alt="Measured on agentmods" height="20"></a>
Per session 183 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,237 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00183 $0.02237
Opus 5 $0.00092 $0.01118
Sonnet 5 $0.00037 $0.00447
Haiku 4.5 $0.00018 $0.00224

Measured 7d ago against content hash fd2f6f601d37, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

workspace-layout scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/agentic-workspace/.apm/skills/workspace-layout/SKILL.md · 139 lines

How it starts

The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Workspace / Layout

Agent と人間が同じ地図を共有できるよう、ワークスペース(@this/)の 推奨レイアウト を定義する。 散在した規約・ドキュメント・一時領域は発見コストと ignore 漏れを増やすため、ここに揃える。

一時成果物を いまのタスクでどこに書くかworkspace-agent-temporary の責務である。 本 SKILL は「全体の箱」と、必要になったタイミングでの不足パス提案を担う。

いつ使うか

  • ワークスペース全体の推奨構成を説明する・提案するとき
  • ドキュメント作成・Agent 作業などで、推奨パスが未整備だと分かったとき
  • 「このファイル/ディレクトリはルートのどこ?」と配置を決めるとき

いつ使わないか

  • 使い捨てスクリプト・計画・調査メモの 置き場選びだけworkspace-agent-temporary
  • Memory 本文のフォーマット → workspace-agent-memory-save
  • 文書内パスや {assets}/ の実体解決だけ → workspace-resolve-file-path / workspace-resolve-agent-assets

アセットディレクトリ

ひな形の探索先({assets}/... を解決するとき workspace-resolve-agent-assets に従う):

  • ./assets/
  • apm_modules/**/workspace-layout/assets/

推奨レイアウト

@this/ 直下を基準とする。 本 SKILL は APM 配布を前提とするため、apm.yml / apm_modules/ は構成上そろっている想定である。

@this/
├── AGENTS.md                      # Agent 向けプロジェクト規約(常時 Context)
├── README.md
├── apm.yml                        # APM 依存定義
├── .ai-agent/                     # Agent 作業領域(gitignore・単数形のみ)
│   ├── .gitignore
│   ├── tmp/                       # 使い捨てスクリプト・ログ・下書き
│   ├── plan/                      # 実行中・レビュー中の計画 (*.md)
│   │   └── done/                  # 完了した計画
│   └── memory/                    # 調査結果・引き継ぎ Memory (*.md)
│       └── done/                  # 用済み Memory
├── docs/                          # 技術ドキュメント正本(markdown-*)
└── apm_modules/                   # APM 依存の展開先・Agent アセット探索先

各要素の役割

パス 必須度 役割
AGENTS.md 推奨 Agent 向け規約の置き場(常時 Context)。本 SKILL はパス案内のみ
README.md 推奨 人間向け概要の置き場。本 SKILL はパス案内のみ
apm.yml 前提 APM 依存定義(本パッケージ配布の前提)
.ai-agent/ 必要時 コミットしない作業領域。単数形のみ
docs/ 必要時 技術ドキュメント正本
apm_modules/ 前提 APM install の展開先(通常は gitignore)

AGENTS.md / README.md

  • 置く場所は @this/ 直下(上表)である
  • 中身・見出し・テンプレートは本 SKILL の対象外である
  • 無いまま規約や README が必要になったら、@this/ への作成を提案する(本文はユーザー方針や他ドキュメントに任せる)

.ai-agent/ の場所

  • ディレクトリ名は .ai-agent/(単数形) のみ
  • 一時ファイル・計画・Memory の運用ベース@this/.ai-agentworkspace-agent-temporary / workspace-resolve-root-directory)。Git ルート相対で特定サブディレクトリの .ai-agent を優先する旧候補順は使わない
  • ひな形を導入するときも、導入先は いまの @this/.ai-agent とする(別 Multi-Root folder へ勝手に作らない)
  • 配下の使い分け(tmp / plan / memory)の運用は workspace-agent-temporary に委譲する
  • Memory の書き方は workspace-agent-memory-save に委譲する

Read the full file on GitHub · 139 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 139 lines · 183 tokens per session scan A fd2f6f601d37

Subscribe to this mod's changes

workspace-layout is a skill published in the GitHub repository eaglesakura/agent-skills (2 stars, last pushed yesterday), licensed MIT. It adds 183 tokens to every session and 2,237 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

babysit-pr

Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…

openai/codex · 114 tokens