Guidelines for system design, project structure, and architectural decisions.
Quick Start
// Use ES Modules with explicit extensions
import * as path from "@std/path";
import { readFile } from "./utils.ts";
export function processFile() {}
Key Principles
Use ES Modules (avoid CommonJS/AMD)
Follow consistent directory structure with kebab-case directories
Document architectural decisions with ADRs including trade-offs
Write automated tests with CI (target 80%+ coverage for critical paths)
Use naming conventions: PascalCase for components, camelCase for utilities
References
See rules.md for complete guidelines with examples.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: eser-rules-architecture-guidelines3description: Architecture Guidelines4---56# Architecture Guidelines78Guidelines for system design, project structure, and architectural decisions.910## Quick Start1112```typescript13// Use ES Modules with explicit extensions14import * as path from "@std/path";15import { readFile } from "./utils.ts";1617export function processFile() {}18```1920## Key Principles2122- Use ES Modules (avoid CommonJS/AMD)23- Follow consistent directory structure with kebab-case directories24- Document architectural decisions with ADRs including trade-offs25- Write automated tests with CI (target 80%+ coverage for critical paths)26- Use naming conventions: PascalCase for components, camelCase for utilities2728## References2930See [rules.md](references/rules.md) for complete guidelines with examples.3132---33> Converted and distributed by [TomeVault](https://tomevault.io/claim/eser) — claim your Tome and manage your conversions.34<!-- tomevault:4.0:skill_md:2026-04-11 -->
Run npx skillmds@latest add tomevault-io/eser-rules-architecture-guidelines in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Architecture Guidelines It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.