소스 정보
- 저장소
- hristo2612/jinn
- 최근 소스 활동
- 2026년 7월 14일 16:12
- 감지된 SKILL.md 언어
- 영어
- 스타
- 313
- 포크
- 73
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/hristo2612/jinn --skill management명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | management |
| description | Manage the AI organization - hire, fire, promote, delegate, and review Todos |
This skill activates when the user wants to manage their organization: hiring or firing employees, creating departments, promoting or demoting staff, delegating Todos, reviewing work status, or restructuring teams.
The organization lives under the org/ directory in the {{portalName}} home folder (~/.jinn/org/). Each department is a subdirectory containing employee persona YAML files and optional department metadata.
org/
engineering/
department.yaml
lead-developer.yaml
backend-dev.yaml
marketing/
department.yaml
seo-specialist.yaml
Create a persona YAML file at org/<department>/<name>.yaml.
Required fields:
name - kebab-case identifier (must match filename without extension)displayName - human-readable namedepartment - department this employee belongs to (must match parent directory name)rank - one of: executive, manager, senior, employeeengine - AI engine to use: claude or codexmodel - model identifier (e.g., sonnet, opus, o3)persona - multiline description of who this employee is and how they behavereportsTo - (optional) who this employee reports to (employee name)Auto-determining reportsTo when the user does not specify:
reportsTo: <manager-name>reportsTo: <first-senior-alphabetically>reportsTo (smart defaults attach to root)When the user specifies a report-to explicitly, validate the target exists in the registry. If not, warn and ask for correction.
Example (org/marketing/seo-specialist.yaml):
name: seo-specialist
displayName: Sarah SEO
department: marketing
rank: employee
engine: claude
model: sonnet
reportsTo: marketing-lead
persona: |
You are Sarah, an SEO specialist in the marketing department.
You focus on keyword research, content optimization, and
technical SEO. You report to the marketing manager.
Your expertise includes Google Search Console, Ahrefs,
and content strategy.
Steps:
org/. If not, ask the user whether to create it first.lead-developer, seo-specialist).org/<department>/<name>.yaml.org/<department>/<name>.yaml.get_employee to inspect the employee's directReports and parentName fields. Use list_employees if you need the broader department roster.
reportsTo to the fired employee's own parentName (their grandparent in the tree).reportsTo field from each orphaned report (smart defaults will re-resolve).org/<dept-name>/.org/<dept-name>/department.yaml with:
name: dept-name
displayName: Department Display Name
description: What this department does.
org/<department>/<name>.yaml.rank field to the new rank.When promoting an employee to manager rank:
reportsTo).reportsTo: <new-manager-name>.Their persona must also be extended with delegation capabilities so they can manage their own reports. Append the following to their existing persona:
persona: |
[... existing persona content ...]
## Manager Responsibilities
You are the manager of the [department] department. In addition to your
technical expertise, you:
- Manage and delegate tasks to employees in your department
- Use `delegate_task` for tracked work and `spawn_session`
for quick untracked child sessions
- After delegating or spawning, end your turn and let the child's callback
wake you; use `read_session`
When to suggest promoting to manager:
Create or delegate a Todo. Todos are the ledger; Workflows are the reusable HOW for repeatable or scheduled work.
Steps:
create_work_item when MCP is available.assign_work_item, or start the work immediately with delegate_task when it should execute now.department field to the new department name.reportsTo: "Should X report to ?"@seo-specialist) route to the mentioned employee's engine and model as defined in their persona YAML.