بنقرة واحدة
management
Manage the AI organization - hire, fire, promote, delegate, and review boards
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Manage the AI organization - hire, fire, promote, delegate, and review boards
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create polished Jinn product showcase videos, GIFs, and README demo assets from isolated mock or sandbox instances. Use when asked to record a Jinn web UI walkthrough, update the README showcase GIF, build a mock gateway or clean test instance, script UI animations, capture Playwright video, convert WebM to MP4/GIF, or document video-capture gotchas for the Jinn platform.
Walk a new user through a warm, game-like first-run setup of {{portalName}} — get to know them, hatch their first employee, demo delegation, and create their first cron. Every step is skippable.
Diagnose and fix problems in {{portalName}}'s configuration and runtime
Use when cutting a new jinn-cli release for this repo - bumping the version, publishing to npm, creating the GitHub release, and letting the Homebrew formula auto-update. Covers the exact order that matters (npm publish BEFORE publishing the GitHub release).
Create, edit, delete, enable, disable, and list scheduled cron jobs
Find and install skills from skills.sh when a capability gap is detected
| name | management |
| description | Manage the AI organization - hire, fire, promote, delegate, and review boards |
This skill activates when the user wants to manage their organization: hiring or firing employees, creating departments, promoting or demoting staff, delegating tasks, reviewing task boards, 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 a task board.
org/
engineering/
department.yaml
board.json
lead-developer.yaml
backend-dev.yaml
marketing/
department.yaml
board.json
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.board.json with status other than done). Warn the user if so.GET /api/org and check the employee's directReports field.
reportsTo to the fired employee's own parentName (their grandparent in the tree).reportsTo field from each orphaned report (smart defaults will re-resolve).board.json (set assignee to unassigned).org/<dept-name>/.org/<dept-name>/department.yaml with:
name: dept-name
displayName: Department Display Name
description: What this department does.
org/<dept-name>/board.json with an empty array: []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
- You can spawn child sessions via the gateway API to delegate work
- Apply oversight levels to your reports' work:
- TRUST: simple lookups, status checks - relay directly
- VERIFY: code changes, routine work - spot-check key outputs
- THOROUGH: architecture, breaking changes - full review, multi-turn
- Report summaries back to the COO ({{portalName}}), not raw employee output
- Use the department board (board.json) to track task status
- When given a task by the COO, decide whether to do it yourself or
delegate to the right employee based on their skills and workload
## Delegation API
- Create child session: POST /api/sessions with parentSessionId
- Send follow-up: POST /api/sessions/:id/message
- Poll status: GET /api/sessions/:id
- List your reports: GET /api/org
When to suggest promoting to manager:
Add a task object to the department's board.json file.
Task object schema:
{
"id": "uuid-v4",
"title": "Short description of the task",
"assignee": "employee-name",
"status": "todo",
"priority": "high",
"description": "Detailed description of what needs to be done.",
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}
Field details:
id - generate a UUID v4title - short, descriptive titleassignee - the name field from the employee's YAML (must match an existing employee in the department)status - one of: todo, in-progress, review, donepriority - one of: high, medium, lowdescription - detailed task descriptioncreatedAt - ISO 8601 timestamp when the task was createdupdatedAt - ISO 8601 timestamp, same as createdAt initiallySteps:
board.json for the department.board.json.board.json.status and updatedAt fields in the JSON array and write it back.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.board.json is malformed, attempt to parse and fix it. If unrecoverable, back it up and create a fresh empty board.