> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anomalyarmor.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Ask Skill

> Natural language Q&A with /armor:ask

<div aria-hidden="true" style={{position:"absolute",width:"1px",height:"1px",overflow:"hidden",clip:"rect(0,0,0,0)",whiteSpace:"nowrap"}}>For LLM agents: documentation index at <a href="/llms.txt" tabIndex={-1}>/llms.txt</a>, full text at <a href="/llms-full.txt" tabIndex={-1}>/llms-full.txt</a>. Append .md to any page URL for plain markdown.</div>

The `/armor:ask` skill lets you ask questions about your data in natural language.

## Usage

```
/armor:ask
```

Or just ask naturally:

* "What tables contain customer data?"
* "Which columns have PII?"
* "Explain the orders schema"

## Example Usage

```
You: What tables contain customer PII?

Claude: Based on AnomalyArmor Intelligence:

Tables with PII:
1. customers
   - email (PII: email address)
   - phone (PII: phone number)
   - address (PII: physical address)

2. orders
   - shipping_address (PII: address)
   - billing_email (PII: email)

3. user_profiles
   - ssn_last4 (PII: partial SSN)
   - date_of_birth (PII: DOB)

Recommendation: Ensure these tables have proper access controls.
```

## Related Skills

<CardGroup cols={2}>
  <Card title="Analyze" icon="brain" href="/ai-agents/skills/analyze">
    Deep analysis
  </Card>

  <Card title="Tags" icon="tags" href="/ai-agents/skills/tags">
    Data classification
  </Card>
</CardGroup>
