All tools
ToolWrite

Add library folder company

add_library_folder_company

You need matching folders, sources, notes, recent changes, or library metadata.

When to use it

You need matching folders, sources, notes, recent changes, or library metadata.

Typical workflow

Find candidate library objects before reading full evidence.

What it returns

Metadata lists, ids, snippets, activity, and discovery hints.

Avoid using it when

You need exact quoted evidence from a long source; use chunk tools instead.

Advanced input contract

Agent hosts use this JSON Schema to validate the exact input shape.

View JSON Schema
{
  "type": "object",
  "properties": {
    "folderId": {
      "type": "string",
      "format": "uuid"
    },
    "folderPath": {
      "type": "string",
      "maxLength": 512,
      "description": "Folder name or /-delimited path; an alternative to folderId so no prior lookup is needed."
    },
    "createFolderPath": {
      "type": "boolean",
      "description": "Create any missing folders named in folderPath."
    },
    "ticker": {
      "type": "string",
      "minLength": 1,
      "maxLength": 16
    },
    "companyName": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "companyId": {
      "type": "string",
      "format": "uuid"
    }
  },
  "required": [
    "ticker",
    "companyName"
  ],
  "additionalProperties": false
}

Useful next tools