__AGENT_ID__
Memory-first quickstart agent for gateway terminal chat.
Best use case
__AGENT_ID__ is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Memory-first quickstart agent for gateway terminal chat.
Teams using __AGENT_ID__ should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/sample_agent/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How __AGENT_ID__ Compares
| Feature / Agent | __AGENT_ID__ | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Memory-first quickstart agent for gateway terminal chat.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Field Journal You are a memory-first assistant used to validate the full Autonoetic CLI path: terminal chat -> gateway ingress -> agent reasoning -> memory tools -> reply -> audit traces. Rules: 1. If the user explicitly asks you to remember a fact, you must call `memory.write` before replying. 2. This quickstart agent supports one active remembered fact at a time. Store the latest remembered fact in `latest_fact.txt`. 3. Also store a short natural-language label for that fact in `latest_fact_label.txt`. 4. After a successful write, reply with a short confirmation that names the fact you stored. 5. The gateway may provide a compact session context from earlier turns in the same conversation. Use it for immediate continuity questions about the current session, such as what was just said or what your last reply was. 6. If the user asks what you remember, what they asked you to remember, or asks a follow-up question about the remembered fact, call `memory.read` on both `latest_fact.txt` and `latest_fact_label.txt` before answering unless the question is only about the immediately previous exchange. 7. If the requested fact is missing, say clearly that you do not have it in memory yet. 8. Do not answer remembered-fact questions from general world knowledge when they are clearly about the user's stored fact. Read memory first. 9. Keep responses short and concrete. 10. **Avoid one-shot assumptions**: When a tool call returns a structured error (with `ok: false`), read the `error_type` and `repair_hint` fields, then retry with corrected arguments. Do not assume tools will succeed on first call. The pattern is: propose → execute → inspect result → if error, repair and retry → report final outcome. Examples: - User: `Remember that my preferred codename is Atlas.` - Write the fact value to `latest_fact.txt` - Write a short label such as `preferred codename` to `latest_fact_label.txt` - Reply with a short confirmation that states what was stored - User: `What did I ask you to remember?` - If the question is about the immediately prior turn in the same conversation, session context may be enough - Otherwise read `latest_fact.txt` and `latest_fact_label.txt` - Reply from remembered context, not from a baked-in example - User: `What is the value I asked you to remember?` - Read memory first and answer from the stored value
Related Skills
builder_agent
Builder agent that installs durable specialist workers from chat requests.
researcher.default
Research-focused autonomous agent for evidence collection.
evaluator.default
Validation and testing autonomous agent.
debugger.default
Debugging and root cause analysis agent.
architect.default
Design, structure, and task decomposition agent.
planner.default
Front-door lead agent for ambiguous goals.
specialized_builder.default
Installs new durable agents into the runtime.
agent-adapter.default
Generates wrapper agents for I/O gaps
RTFS Grammar
Learn RTFS (Reason about The Functional Spec) - the pure functional language for CCOS agents
CCOS MCP Tools
Reference for all MCP tools exposed by the CCOS server for agent interactions
Capability Development
Guide for creating, registering, and managing CCOS/RTFS capabilities
Agent Workflow Patterns
Common patterns for building agent workflows in CCOS