ワンクリックで
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).