소스 정보
- 저장소
- diegosouzapw/awesome-omni-skill
- 최근 소스 활동
- 2026년 2월 28일 04:03
- 감지된 SKILL.md 언어
- 영어
- 스타
- 50
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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