원클릭으로
tasks
A project and task management system for tracking work across the Abraxas system.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
A project and task management system for tracking work across the Abraxas system.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
The Sovereign Vault for verified truth fragments and historical provenance tracking.
Soter is the Risk Sensing & Triggering pillar of the Sovereign Brain. It monitors for linguistic sycophancy and mechanistic attention sinks to trigger an Epistemic Crisis (T=1) and assign a Risk Score (R[0-5]).
The core governance and system integrity layer of the Abraxas sovereign environment.
The ingestion and filtration loop for external data entering the Abraxas system.
The Void Mapper for identifying and resolving epistemic gaps.
The Epistemic Atlas is a unified knowledge graph and query layer that connects beliefs (Mnemon), evidence (Mnemosyne), and verification status (Janus Ledger).
| name | tasks |
| description | A project and task management system for tracking work across the Abraxas system. |
The Tasks skill is the central source of truth for project tasks, tracking progress, and managing dependencies within the Abraxas project. It enables structured task management and ensures that work is sequenced correctly.
The Tasks skill manages tasks as documents in ArangoDB and dependencies as edges in a graph.
Tasks typically move through the following statuses:
open: Initial state, task defined.ready: All dependencies resolved, ready for implementation.testing: Implementation complete, awaiting verification.closed: Task completed and verified.create_taskCreates a new entry in the tasks system.
title (required), project, scope, priority.open and initializes timestamps.get_ready_tasksRetrieves a list of tasks that are actionable.
ready.open AND it has no remaining blocks dependencies leading to tasks that are not closed.update_task_statusTransitions a task to a new state.
id (required), status (required: open, ready, testing, closed).add_dependencyCreates a directed edge between two tasks.
child_id (required), parent_id (required), type (defaults to blocks).child_id must be completed before parent_id can proceed.tasks (document), task_edges (edge).