Shared conventions
Skill javicasper/memory-forge/examples/monorepo/.claude/skills/shared-conventions
CLI-agnostic continuous learning for AI coding agents. Supports Claude Code, OpenCode, Codex, Cursor. Monorepo-ready with distributed docs and skills.
npx -y skills add javicasper/memory-forge --skill shared-conventionsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Project-wide conventions and patterns that apply to all apps/modules. Use when: asking about project structure, coding standards, or shared patterns. This skill loads for all work in the monorepo.
SKILL.md
0.9 KB, as published. Nobody here has run it
Shared Conventions
This skill contains project-wide patterns that apply to all apps and modules.
Conventions
Commit Message Format
type(scope): description
Types: feat, fix, refactor, chore, docs, test
Scope: app name or module (e.g., booking, hermes, shared)
Code Organization
All apps follow this structure:
src/
├── domain/ # Business logic, entities, value objects
├── application/ # Use cases, services
└── infrastructure/ # Controllers, repositories, external APIs
Testing
- Unit tests:
*.spec.ts(alongside source files) - Integration tests:
*.test.ts(alongside source files)