modular-go
Originally frompsiace/skills
SKILL.md
modular-go
Concise guidance for designing Go packages that stay small, focused, and easy to evolve.
Purpose and Triggers
- Use for Go package design, refactoring, and code review.
- Focus on API boundaries, state modeling, and flow decomposition.
- Use when deciding the right abstraction level: local helper, utility package, manager, or builder.
- Prefer explicit boundaries over convenience exports.
Design Principles
- Every export is a promise — keep the public surface minimal and intentional.
- One package, one responsibility you can explain in one sentence.
- Depth over breadth — narrow interfaces that hide rich implementations outlast wide, shallow ones.
- Stateless by default — treat mutable state as liability that must justify its lifecycle cost.
- Split along responsibility seams, not file size — every new boundary must earn its indirection cost.
- Orchestration tells the story; capability methods do the work.
- Boundaries are translation layers — convert errors, types, and protocols at the edges, not in core logic.
- Choose the smallest abstraction that solves the real problem; resist premature generalization.
- Lifecycle is a first-class design concern — design shutdown paths alongside startup paths.
Workflow
- Define one package responsibility.
- Expose one obvious primary entry point (type, interface, or function).
- Keep helpers local by default; extract to
xxxutilonly for real cross-package reuse. - Keep transport handlers focused on protocol mapping and delegate behavior to injected dependencies.
- Compose orchestration from focused functions, with short stage-intent comments.
- Re-evaluate boundaries when a package can no longer be explained in one sentence.
- Re-check against the reference checklists before merge.
Topics
| Topic | Guidance | Reference |
|---|---|---|
| Module Boundary | Expose minimal API and separate deep vs wide interfaces | references/module-boundary.md |
| State Flow | Use stateless functions and one-shot state objects | references/state-flow.md |
| Orchestration | Use a single public executor and internal helpers | references/orchestration.md |
| gRPC Practices | Keep handlers as thin translators; isolate transport from domain | references/grpc-practices.md |
| Review Checklist | Run a fast architecture sanity check before merge | references/review-checklist.md |
References
- Reference files are intentionally short and task-focused.
- Source links are listed in each reference file frontmatter
urls.
Weekly Installs
3
Repository
ak1ra-komj/psiace-skillsFirst Seen
Feb 28, 2026
Security Audits
Installed on
cline3
github-copilot3
codex3
kimi-cli3
gemini-cli3
cursor3