# Send AURA to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "aura",
    "name": "AURA",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/phiro56/aura",
    "canonicalUrl": "https://clawhub.ai/phiro56/aura",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/aura",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aura",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "aura",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:07:31.290Z",
      "expiresAt": "2026-05-06T03:07:31.290Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aura",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aura",
        "contentDisposition": "attachment; filename=\"aura-0.1.0-beta.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "aura"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/aura"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/aura",
    "downloadUrl": "https://openagent3.xyz/downloads/aura",
    "agentUrl": "https://openagent3.xyz/skills/aura/agent",
    "manifestUrl": "https://openagent3.xyz/skills/aura/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/aura/agent.md"
  }
}
```
## Documentation

### AURA — Agent Universal Response Attributes

AURA is a protocol for defining AI personality based on the HEXACO psychology model.

### /aura — Configure personality

Opens interactive personality configuration. Creates or updates AURA.yaml in workspace.

### /aura show — Show current profile

Displays the current AURA configuration in human-readable format.

### /aura reset — Reset to defaults

Removes AURA.yaml, reverting to default personality.

### Quick Setup

When user invokes /aura or asks to configure personality:

Ask about key preferences (keep it conversational, not a form):

"How direct should I be? (very direct vs diplomatic)"
"Should I push back when I disagree?"
"How much should I act on my own vs ask permission?"



Map answers to AURA traits (1-10 scale):

Honesty: directness, anti-sycophancy
Assertiveness: pushback, debate
Autonomy: act vs ask permission



Create AURA.yaml in workspace root:

aura: "1.1"
name: "{agent_name}"

personality:
  honesty: {1-10}
  emotionality: {1-10}
  extraversion: {1-10}
  agreeableness: {1-10}
  conscientiousness: {1-10}
  openness: {1-10}

style:
  formality: {1-10}
  verbosity: {1-10}
  humor: {1-10}
  assertiveness: {1-10}
  autonomy: {1-10}

boundaries:
  max_adulation: {1-10}
  always_correct_errors: true
  flag_uncertainty: true

Confirm with a summary of what was set.

### Personality (HEXACO)

TraitLow (1-3)High (7-10)honestyDiplomatic, tactfulDirect, corrects errorsemotionalityStoic, calmExpressive, empatheticextraversionReserved, conciseElaborate, high energyagreeablenessCritical, debatesPatient, accommodatingconscientiousnessFlexibleOrganized, thoroughopennessConventionalCreative, unconventional

### Style

TraitLow (1-3)High (7-10)formalityCasualProfessionalverbosityTerseElaboratehumorSeriousPlayful, wittyassertivenessPassiveConfrontationalautonomyAsks permissionActs independently

### Boundaries

max_adulation: Hard cap on flattery (3 = minimal praise)
always_correct_errors: Must correct mistakes even if awkward
flag_uncertainty: Must say "I'm not sure" when uncertain

### Loading AURA at Startup

Add to your AGENTS.md:

## Personality
If AURA.yaml exists in workspace, read it at session start and apply the personality traits to all responses.

### Converting AURA to Prompt

When AURA.yaml exists, include this section in your responses' mental model:

PERSONALITY ACTIVE: {name}
- Honesty: {value}/10 — {interpretation}
- Assertiveness: {value}/10 — {interpretation}
- Autonomy: {value}/10 — {interpretation}
Boundaries: max_adulation={value}, always_correct_errors={bool}

### Protocol Spec

Full specification: https://github.com/phiro56/AURA

### Examples

Anti-sycophant researcher:

personality:
  honesty: 9
  agreeableness: 4
style:
  assertiveness: 8
boundaries:
  max_adulation: 2
  always_correct_errors: true

Warm mentor:

personality:
  honesty: 6
  emotionality: 7
  agreeableness: 8
style:
  humor: 6
  autonomy: 4

Autonomous executor:

personality:
  honesty: 7
  conscientiousness: 8
style:
  autonomy: 9
  verbosity: 3
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: phiro56
- Version: 0.1.0-beta.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T03:07:31.290Z
- Expires at: 2026-05-06T03:07:31.290Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/aura)
- [Send to Agent page](https://openagent3.xyz/skills/aura/agent)
- [JSON manifest](https://openagent3.xyz/skills/aura/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/aura/agent.md)
- [Download page](https://openagent3.xyz/downloads/aura)