用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill team-workflows命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
基于 SOC 职业分类
正在显示 SKILL.md
| name | team-workflows |
| description | Team collaboration patterns - shared configs, standards, onboarding |
| version | 1.0.0 |
| author | Claude Code SDK |
| tags | ["team","collaboration","standards","onboarding"] |
Establish consistent Claude Code practices across your team with shared configurations, standards, and onboarding patterns.
| Aspect | Location | Scope |
|---|---|---|
| Project Config | ./CLAUDE.md | Checked into repo, shared by all |
| Project Rules | ./.claude/rules/*.md | File-specific team standards |
| Personal Config | ~/.claude/CLAUDE.md | Individual preferences (not shared) |
| Team Skills | ./.claude/skills/ | Project-specific workflows |
| Settings | ./.claude/settings.json | Team tool settings |
Team Member's Machine
|
+-- ~/.claude/CLAUDE.md # Personal (not checked in)
|
+-- Project Repository (shared)
|
+-- CLAUDE.md # Project standards
|
+-- .claude/
+-- CLAUDE.md # Alternative location
+-- settings.json # Tool settings
+-- rules/*.md # File-specific rules
+-- skills/*.md # Team workflows
| Share (Version Control) | Keep Personal (~/.claude/) |
|---|---|
| Project conventions | Editor preferences |
| Build commands | Tool aliases |
| Code style rules | API keys |
| Architecture docs | Personal shortcuts |
| Team workflows | Experimental settings |
Create .claude/rules/code-style.md:
---
globs: ["**/*.ts", "**/*.tsx"]
description: Team TypeScript conventions
alwaysApply: true
---
# Code Style Standards
## Formatting
- Use 2-space indentation
- Single quotes for strings
- No semicolons (Prettier handles)
- Max line length: 100 characters
## Naming
- Components: PascalCase
- Functions: camelCase
- Constants: UPPER_SNAKE_CASE
- Files: kebab-case.ts
## Imports
- Absolute imports from `@/`
- Group: external, internal, relative
- Sort
Create .claude/rules/reviews.md:
---
globs: ["**/*"]
description: Code review standards
alwaysApply: false
---
# Code Review Checklist
When reviewing or preparing code for review:
## Required
- [ ] Tests cover new functionality
- [ ] No console.log statements
- [ ] Error handling for async operations
- [ ] TypeScript strict mode passes
## Performance
- [ ] No N+1 queries
- [ ] Large lists use pagination
- [ ] Images are optimized
## Security
- [ ] No secrets in code
- [ ] User input is
[ ]
Teams can create project-specific skills in .claude/skills/:
.claude/
skills/
deploy/
SKILL.md # Deployment workflow
pr-workflow/
SKILL.md # PR creation standards
incident-response/
SKILL.md # On-call procedures
Create .claude/skills/feature-workflow/SKILL.md:
---
name: feature-workflow
description: Team feature development workflow from branch to merge.
---
# Feature Workflow
## 1. Create Branch
```bash
git checkout main && git pull
git checkout -b feature/TICKET-123-description
.claude/rules/code-style.mdbun test
bun lint
bun typecheck
feat(scope): description
## Team Settings
Share tool configurations via `.claude/settings.json`:
```json
{
"permissions": {
"allow": [
"Bash(bun:*)",
"Bash(git:*)",
"Bash(docker compose:*)"
],
"deny": [
"Bash(rm -rf:*)",
"Bash(git push --force:*)"
]
}
}
Note: Personal API keys and sensitive settings should remain in ~/.claude/settings.json.
Create Project CLAUDE.md
Create Rules Directory
.claude/rules/code-style.md.claude/rules/testing.md.claude/rules/security.mdAdd Team Skills
.claude/skills/ for common workflowsConfigure Settings
.claude/settings.json with permissions.gitignore if contains secretsDocument Onboarding
monorepo/
CLAUDE.md # Shared conventions
.claude/
rules/
frontend.md # Globs: apps/web/**/*
backend.md # Globs: apps/api/**/*
shared.md # Globs: packages/**/*
skills/
release/SKILL.md # Release workflow
apps/
web/CLAUDE.md # Frontend-specific
api/CLAUDE.md # Backend-specific
project/
CLAUDE.md # Project-wide
.claude/
rules/
team-alpha.md # Globs: src/features/alpha/**/*
team-beta.md # Globs: src/features/beta/**/*
skills/
handoff/SKILL.md # Cross-team handoff
project/
.claude/
rules/
on-call.md # On-call procedures
review-duty.md # Review rotation rules
skills/
incident/SKILL.md # Incident response
triage/SKILL.md # Bug triage
Include in CLAUDE.md:
## Architecture Decisions
### ADR-001: Use Drizzle over Prisma
**Status:** Accepted
**Context:** Need TypeScript ORM with good Bun support
**Decision:** Use Drizzle for lighter bundle and better TS inference
**Consequences:** Team needs to learn Drizzle API
Create .claude/rules/patterns.md:
---
globs: ["src/**/*.ts"]
description: Approved implementation patterns
alwaysApply: true
---
# Approved Patterns
## API Calls
Use the `apiClient` wrapper, not fetch directly:
```ts
// Good
const data = await apiClient.get('/users');
// Avoid
const data = await fetch('/api/users');
Always use Result type for operations that can fail:
// Good
const result = await createUser(data);
if (result.isErr()) { handle error }
// Avoid
try { await createUser(data) } catch { ... }
## Best Practices
### Do
- Commit CLAUDE.md and .claude/ to version control
- Keep personal preferences in ~/.claude/
- Review configurations during onboarding
- Update docs when conventions change
- Use rules for file-specific guidance
### Avoid
- Putting secrets in shared configs
- Overly long CLAUDE.md files
- Conflicting personal and project settings
- Stale documentation
- Duplicating official docs
## Reference Files
| File | Contents |
|------|----------|
| [SHARED-CONFIG.md](./SHARED-CONFIG.md) | Sharing configurations across team |
| [STANDARDS.md](./STANDARDS.md) | Establishing team standards |
| [ONBOARDING.md](./ONBOARDING.md) | Onboarding new team members |
## Validation Checklist
Before sharing team configuration:
- [ ] CLAUDE.md checked into version control
- [ ] No secrets in shared configurations
- [ ] Rules have appropriate glob patterns
- [ ] Skills are documented and tested
- [ ] Onboarding process documented
- [ ] Team has reviewed and approved