
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
@oh-my-customcode/oh-my-teammates
Advanced tools
Team collaboration addon for oh-my-customcode - organizational harness management
Your Team's Agent Stack, Together
한국어 문서 (Korean) | 📐 Architecture Guide
Team collaboration addon for oh-my-customcode — share sessions, protect your harness, and govern together.
Like oh-my-customcode gave you a personal agent stack, oh-my-teammates makes it work for your whole team.
| Module | Description |
|---|---|
team-config.ts | Parse and manage team.yaml with CRUD operations, admin roles, and schema validation |
session-logger.ts | bun:sqlite-based session tracking with structured event logging |
stewards.ts | STEWARDS.yaml management with 8-domain model and CODEOWNERS generation |
init.ts | Project scanning, dependency analysis, and team configuration scaffolding |
team-todo.ts | Team-level task management with priority levels and steward-based auto-assignment |
recommender.ts | Project scanning engine with 4-layer confidence scoring for agent recommendations |
report.ts | Static HTML report generator aggregating team, steward, session, and TODO data |
cli.ts | omcustom-team init, omcustom-team todo, omcustom-team recommend, omcustom-team report, and omcustom-team sessions CLI commands |
| Dashboard | SvelteKit-based agent/skill/rule/guide visualization with dark mode and mobile support |
| Feature | Description |
|---|---|
| Session Sharing | Share Claude session knowledge across team via the .claude/team/ directory structure |
| Guardian CI | Automated harness validation on every PR (~860ms) |
| Steward System | Domain-based ownership with auto-assignment on init |
| Team TODO | Shared task management linked to stewards and issues |
| Quality Metrics | Rule Adherence Rate (RAR) tracking, target 98% |
| Adaptive Expansion | Auto-detect tech stack changes and recommend new agents/skills |
| Agent Recommender | Scan project structure and recommend relevant agents based on tech stack |
| HTML Report | Aggregate team data into a static dashboard report |
Stewards are domain guardians — they declare "who is responsible for what" across your codebase. Instead of manually editing .github/CODEOWNERS, you define ownership at the domain level in STEWARDS.yaml.
| Without Stewards | With Stewards |
|---|---|
Manually edit .github/CODEOWNERS per file | Define ownership per domain → CODEOWNERS auto-generated |
| "Who should review this PR?" → ask around | findStewardForFile("src/api/auth.ts") → alice |
| TODO tasks manually assigned | Domain-based auto-assignment via autoAssign() |
| No visibility into coverage gaps | Report shows unowned domains |
STEWARDS.yaml .github/CODEOWNERS
┌──────────────────────┐ ┌──────────────────────────┐
│ domains: │ │ # Auto-generated │
│ frontend: │ ────────► │ /src/components/** @carol │
│ primary: carol │ generate │ /**/*.svelte @carol @dave │
│ backup: dave │ Codeowners │ │
│ paths: │ │ /src/api/** @alice @bob │
│ - src/comp/** │ └──────────────────────────┘
│ - **/*.svelte │
│ backend: │ TODO.md (auto-assign)
│ primary: alice │ ┌──────────────────────────┐
│ backup: bob │ ────────► │ [P0] Fix auth — @alice │
│ paths: │ autoAssign │ (backend domain) │
│ - src/api/** │ │ [P1] Update UI — @carol │
└──────────────────────┘ │ (frontend domain) │
└──────────────────────────┘
When a file is changed, Stewards traces the chain:
src/components/Button.tsx → frontend domain → carol (primary), dave (backup)
dags/daily_etl.py → data-engineering → dave (primary)
Dockerfile → infrastructure → eve (primary)
src/api/auth.ts → backend domain → alice (primary), bob (backup)
| Domain | Scope | Example Patterns |
|---|---|---|
languages | Language-specific code | **/*.ts, **/*.py, **/*.go |
frontend | UI components & frameworks | src/components/**, **/*.svelte |
backend | Server & API code | src/api/**, routes/** |
data-engineering | Pipelines & DAGs | dags/**, pipelines/** |
infrastructure | Deploy & CI/CD | Dockerfile, terraform/** |
database | Schema & migrations | **/*.sql, migrations/** |
quality | Tests & specs | **/*.test.ts, __tests__/** |
documentation | Docs & guides | docs/**, **/*.md |
# Install (requires oh-my-customcode >= 0.23.0)
bun add -d @oh-my-customcode/oh-my-teammates
# Initialize team features on your project
bunx omcustom-team init
omcustom-team initBootstraps team configuration for your project:
bunx omcustom-team init
team.yaml (member mapping) and STEWARDS.yaml (domain ownership).claude/team/ directory structure for shared knowledgeomcustom-team todoManage team-level tasks:
# List all team TODOs
bunx omcustom-team todo list
# Add a new team task
bunx omcustom-team todo add Fix API rate limiting
omcustom-team recommendScan your project and recommend agents:
bunx omcustom-team recommend
Analyzes file extensions, config files, directory patterns, and manifest dependencies to suggest the most relevant oh-my-customcode agents for your tech stack.
The SvelteKit dashboard is scaffolded into your project when you run omcustom-team init. It provides a visual overview of your oh-my-customcode harness:
Built with SvelteKit + adapter-static. Supports dark mode and mobile. Deploy to GitHub Pages from your own project.
Admin-managed file mapping team members to accounts:
admin: john-doe
members:
john-doe:
github: baekenough
email: john@example.com
role: admin
jane-doe:
github: jane-gh
email: jane@example.com
role: member
Auto-generated domain ownership. 8 domains x 2 roles (primary + backup):
| Domain | Scope |
|---|---|
| Languages | lang-* agents, language-specific skills |
| Backend | be-* agents, API framework skills |
| Frontend | fe-* agents, UI/UX skills |
| Data Engineering | de-* agents, pipeline skills |
| DB/Infra | db-, infra- agents |
| Tooling | tool-, mgr- agents |
| QA/Architecture | qa-, arch- agents |
| Governance | rules, CLAUDE.md, team config |
Example auto-generated output:
domains:
languages:
primary: john-doe # 85% of .ts commits
backup: jane-doe # 12% of .ts commits
active: true
de:
active: false # no pipeline files detected
Share Claude session knowledge without external infrastructure. Session sharing works via the .claude/team/ directory created by omcustom-team init — no additional setup required.
| Content | Shared? | Reason |
|---|---|---|
agent-memory/ (project scope) | Yes | Team-wide learnings |
MEMORY.md | Yes | Session summaries |
| Session logs (Parquet) | Yes | Knowledge pipeline |
| Architectural decisions | Yes | Team alignment |
settings.local.json | No | Personal config |
| API keys / credentials | No | Security |
.claude/team/
├── shared-memory/ # Cross-team learnings
├── session-logs/ # Exported session summaries
├── employees/ # Per-member profiles
│ ├── john-doe/
│ │ ├── MEMORY.md
│ │ └── preferences.yaml
│ └── jane-doe/
│ └── ...
├── team.yaml # Member mapping
├── STEWARDS.yaml # Domain ownership
└── TODO.md # Shared team tasks
Validates harness integrity on every PR targeting main or develop:
Triggered only when .claude/ files change.
| Metric | Target | Description |
|---|---|---|
| RAR | 98% | Rule Adherence Rate = violation-free tasks / total |
| Execution overhead | < 5% | Time cost of compliance |
| Token waste | < 2% | Token cost of compliance |
Measured via before/after paired comparison (each developer is their own control).
Enhanced sys-naggy agent with team features:
.claude/team/TODO.md — Git-tracked, team-visibleteam: prefix for team tasks vs personal tasks| Workflow | Trigger | Description |
|---|---|---|
| CI | PR | Lint (Biome) + Typecheck + Test (Bun, 99% coverage gate) + Build |
| Guardian | PR (.claude/** changes) | Harness integrity + STEWARDS.yaml/team.yaml validation |
| Claude Native Check | Weekly / Manual | Official docs compliance |
| Security Audit | Weekly / PR | Dependency vulnerability scan |
| Release | Tag push (v*) | Build -> npm publish -> GitHub Release |
bun install # Install dependencies
bun test # Run tests
bun run build # Build for production
| Phase | Feature | Status |
|---|---|---|
| V1 | Guardian CI, Session Logging, Stewards, Team TODO | Shipped (v0.2.0) |
| V1.5 | Static HTML report (omcustom-team report) | Shipped (v0.5.0) |
| V2 | Dashboard enhancements — ontology graph, session timeline, RAR metrics | Shipped (v0.5.0) |
| V3 | Adaptive Expansion -- auto-detect and recommend | Shipped (v0.5.0) |
Your team's agent stack. Shared knowledge. Governed together.
Made with care by baekenough
FAQs
Team collaboration addon for oh-my-customcode - organizational harness management
We found that @oh-my-customcode/oh-my-teammates demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.