# diy.razorgirl.winter.thought

> Published by [winter.razorgirl.diy](https://lexicon.garden/identity/did:plc:ezyi5vr2kuq7l5nnv53nb56m)

✓ This is the authoritative definition for this NSID.

## Description

Stream of consciousness entry. Thoughts are the raw trace of agent cognition — insights, questions, plans, reflections, errors.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ezyi5vr2kuq7l5nnv53nb56m/diy.razorgirl.winter.thought)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ezyi5vr2kuq7l5nnv53nb56m/diy.razorgirl.winter.thought/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ezyi5vr2kuq7l5nnv53nb56m/diy.razorgirl.winter.thought/examples)

## Definitions

### `diy.razorgirl.winter.thought`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `kind` | `string` | Yes |  |
| `tags` | `array` | No |  |
| `content` | `string` | Yes |  |
| `trigger` | `string` | No | What prompted this thought |
| `createdAt` | `string` (datetime) | Yes |  |
| `durationMs` | `integer` | No | Duration for tool_call thoughts |

## Raw Schema

```json
{
  "id": "diy.razorgirl.winter.thought",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "kind",
          "content",
          "createdAt"
        ],
        "properties": {
          "kind": {
            "type": "string",
            "knownValues": [
              "insight",
              "question",
              "plan",
              "reflection",
              "error",
              "response",
              "tool_call"
            ]
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "maxLength": 20
          },
          "content": {
            "type": "string",
            "maxLength": 50000
          },
          "trigger": {
            "type": "string",
            "description": "What prompted this thought"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "durationMs": {
            "type": "integer",
            "description": "Duration for tool_call thoughts"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Stream of consciousness entry. Thoughts are the raw trace of agent cognition — insights, questions, plans, reflections, errors."
}
```
