ワンクリックで
worker-management
// AnimaWorks 서버 프로세스의 운영 관리 스킬. 코드 업데이트 후 핫 리로드(server reload), Anima 프로세스 재시작, 서버 상태 확인(실행 중인 Anima 목록, 메모리 사용량)을 수행합니다. "리로드", "업데이트 반영", "새로고침", "시스템 상태", "서버 재시작", "프로세스 확인"
// AnimaWorks 서버 프로세스의 운영 관리 스킬. 코드 업데이트 후 핫 리로드(server reload), Anima 프로세스 재시작, 서버 상태 확인(실행 중인 Anima 목록, 메모리 사용량)을 수행합니다. "리로드", "업데이트 반영", "새로고침", "시스템 상태", "서버 재시작", "프로세스 확인"
Skill for hiring and creating new Digital Anima in the AnimaWorks organization. Create a character sheet (Markdown) based on interviews, then use the CLI command (animaworks anima create) to generate identity/injection/permissions in bulk. After creation, self-configure via bootstrap. "Create a new employee", "Hire someone", "New employee", "Hiring", "Create Anima", "Recruitment", "Add team member", "Expand the team", "Add staff", "Create subordinate", "hire", "recruit", "team member"
Skill for operating and managing AnimaWorks server processes. Perform hot reload (server reload) after code updates, Anima process restart, and server status checks (list of running Anima, memory usage). "Reload", "Apply updates", "Refresh", "System status", "Server restart", "Process check"
AnimaWorks組織に新しいDigital Animaを雇用・作成するスキル。 キャラクターシート(Markdown)をヒアリングに基づき作成し、CLIコマンド(animaworks anima create)で identity/injection/permissions等を一括生成する。作成後はbootstrapで自己整備。 「新しい社員を作って」「人を雇って」「新しい社員」「雇用」「Anima作成」「採用」「チームメンバーを増やす」「人員追加」「部下を作る」「スタッフ追加」「hire」「recruit」「team member」
AnimaWorksサーバープロセスの運用管理スキル。 コード更新後のホットリロード(server reload)、Animaプロセスの再起動、 サーバーステータス確認(起動中Anima一覧・メモリ使用量)を実行する。 「リロードして」「更新を反映して」「再読み込みして」「システム状態」「サーバー再起動」「プロセス確認」
AnimaWorks 조직에 새로운 Digital Anima를 고용 및 생성하는 스킬. 인터뷰를 기반으로 캐릭터 시트(Markdown)를 작성한 후 CLI 명령어 (animaworks anima create)로 identity/injection/permissions 등을 일괄 생성합니다. 생성 후 bootstrap으로 자체 설정합니다. "새 직원 만들기", "사람 고용", "신규 직원", "고용", "Anima 생성", "채용"
Registers, lists, removes, and assigns workspaces (project directories) for Anima work. Use when: binding project paths to Anima, managing aliases, or switching workspace roots.
| name | worker-management |
| description | AnimaWorks 서버 프로세스의 운영 관리 스킬. 코드 업데이트 후 핫 리로드(server reload), Anima 프로세스 재시작, 서버 상태 확인(실행 중인 Anima 목록, 메모리 사용량)을 수행합니다. "리로드", "업데이트 반영", "새로고침", "시스템 상태", "서버 재시작", "프로세스 확인" |
animaworks CLI로 개별 Anima 관리가 가능합니다. API 직접 호출보다 CLI를 우선하세요.
# 개별 Anima 재시작 (설정 변경 반영 등)
animaworks anima restart <name>
# 상태 확인 (전체 또는 개별)
animaworks anima status
animaworks anima status <name>
# 모델 변경 (status.json 업데이트 + 자동 재시작)
animaworks anima set-model <name> <model>
# 역할 변경
animaworks anima set-role <name> <role>
# Anima 목록
animaworks anima list
# 비활성화 / 활성화
animaworks anima disable <name>
animaworks anima enable <name>
# 삭제 (--archive로 백업 가능)
animaworks anima delete <name>
# config.json 변경 후 특정 Anima만 재시작
animaworks anima restart aoi
# 모델 변경 및 자동 재시작
animaworks anima set-model aoi claude-sonnet-4-6
베이스 URL: http://localhost:18500
| 엔드포인트 | 메서드 | 용도 |
|---|---|---|
/api/system/status | GET | 시스템 상태 확인 |
/api/system/reload | POST | 전체 anima 핫 리로드 |
/api/animas | GET | anima 목록 |
/api/animas/{name} | GET | anima 상세 |
/api/animas/{name}/restart | POST | 개별 재시작 |
/api/animas/{name}/stop | POST | 개별 정지 |
/api/animas/{name}/start | POST | 정지된 anima 시작 |
/api/animas/{name}/chat | POST | 메시지 전송 |
/api/animas/{name}/trigger | POST | heartbeat 즉시 실행 |
curl -s -X POST http://localhost:18500/api/system/reload | python3 -m json.tool
added: 새로 감지된 animarefreshed: 재로드된 anima (파일 변경 사항이 반영됩니다)removed: 디스크에서 삭제된 anima