> For the complete documentation index, see [llms.txt](https://j-osler.gitbook.io/wdid/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://j-osler.gitbook.io/wdid/working-with-items/untitled-1.md).

# Adding Items

You need to enter data into wdid in order to use its powerful tagging and filtering capabilities. The primary way of doing this is through the `add` command. The simplest version of this is to just pass the data to be stored on the command line:

```
$ wdid add "remember the milk"
⇒ dewjba -- Sun, 10 Nov 2019 13:59:46
Data:
remember the milk
```

You can see that wdid returned some information about the newly created item - a six-character alphanumeric ID; a date and time, and the data for the item.

This ID, `dewjba` here, is used to identify the item uniquely. It is required when performing actions on said items.

The symbol in front of the status, `⇒`, indicates that the item is in a `waiting` [status](/wdid/working-with-items/item-status.md).

### Options

It's also possible to add a `--time` in wdid [time format](/wdid/advanced/time-format.md) to mark that an item is for a specific day:

```
$ wdid add "call @bob" -t tomorrow
```

And it's possible to add an item in an already completed, *done* state:

```
$ wdid add "send email about project" -d
```

### Longer Items

Not passing a description will use the configured shell $EDITOR (or vim).

```
$ wdid add
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://j-osler.gitbook.io/wdid/working-with-items/untitled-1.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
