# Custom Image Tagger

> Analyze selected construction images, create missing object metadata columns, and write concise visual metadata back to SharePoint columns using explicit image-analysis, list-schema, list-update, and list-configuration tools. Use when the user says: - "Tag these images" - "Tag this construction image" - "Analyze these images and update the object columns" - "Populate Primary Objects and Background Objects for these photos" - "Identify visible objects in the selected construction photos"

- Skill: `pnp/custom-image-tagger` (Agent Skill)
- Install (CLI): `npx skillmds@latest add pnp/custom-image-tagger`
- Raw SKILL.md: https://api.skillmd.com/api/skills/pnp/custom-image-tagger/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: pnp (https://skillmd.com/u/pnp)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/pnp/custom-image-tagger

---

# Custom Image Tagger

## When to use
Use this skill when the user wants selected construction images analyzed and tagged in the current SharePoint image library. It supports one or more selected image files and writes concise metadata into library columns for primary objects, background objects, scene content, and description.

Use it for image metadata tagging in construction image libraries, not for general document tagging or non-image files.

## Inputs
- One or more selected image files in the current SharePoint document library.
- Current site, library URL, library path, and list ID from SharePoint context.
- Target columns, resolved from schema when present:
  - `Primary Objects` / `primaryObjects`
  - `Background Objects` / `backgroundObjects`
  - `Scene content` / `sceneContent`
  - `Description` / `_ExtendedDescription`

## Steps
1. Confirm selected files are images by extension or file metadata. If no selected image is available, say so plainly and stop.
2. Use `analyze_image({listFullUrl, relativePaths, question})` once for all selected images. Ask for per-image output with:
   - primary objects as a single comma-delimited line
   - background objects as a single comma-delimited line
   - scene content as one concise sentence
   - optional tags as a concise comma-delimited line
3. Use `get_list_schema({listId, webUrl, includeFields: true, includeContentTypes: false, includeHidden: false, includeReadOnly: false})` to resolve available target columns and exact internal names.
4. If `Primary Objects` / `primaryObjects` or `Background Objects` / `backgroundObjects` is missing, use `create_or_update_list` on the current library before updating items:
   - Keep the existing library settings.
   - Add a single-line text column titled `Primary Objects` with internal name `primaryObjects` when missing.
   - Add a single-line text column titled `Background Objects` with internal name `backgroundObjects` when missing.
   - Do not recreate or modify these columns if they already exist.
   - After creating columns, use the expected internal names `primaryObjects` and `backgroundObjects`; re-read schema only if the create/update result does not confirm the fields.
5. Use `list_items({listId, webUrl, filter, viewFields: ["ID", "FileLeafRef"], itemType: "files", recursive: true})` to find the list item IDs for the selected file names. Use `FileLeafRef` in CAML filters, not `Title`.
6. Build one `update_list_items_v2({items, listUrl, webUrl})` call for all matched images. Update only target columns that exist or were just created:
   - `primaryObjects` = primary objects line
   - `backgroundObjects` = background objects line
   - `sceneContent` = concise scene sentence, only when the column exists
   - `_ExtendedDescription` = `Tags: <tag line>` or a concise description if tags are not requested, only when the column exists
7. Keep each value under 255 characters for single-line text columns. Prefer fewer, high-confidence terms over long tag lists.
8. If image analysis returns empty or uncertain content for an image, write `Not found` only when appropriate and do not invent objects.
9. Return a concise per-image summary and confirm how many SharePoint items were updated. If object columns were created, mention that once. If any selected file could not be matched to a list item, name it in the response.

## Output format
Return a concise result:

```markdown
Updated <N> image(s). Created missing columns: <Primary Objects, Background Objects | none>.

- <filename>: Primary: <comma-delimited objects>; Background: <comma-delimited objects>; Scene: <sentence>
```

If an update fails, include the plain-language failure and do not claim the item was updated.

## Example
User: "Tag these images"

Expected behavior:
1. Analyze all selected images with `analyze_image`.
2. Resolve columns with `get_list_schema`.
3. Create `Primary Objects` and/or `Background Objects` as single-line text columns if missing.
4. Find selected files with `list_items` using `FileLeafRef`.
5. Batch update metadata with `update_list_items_v2`.
6. Report the updated filenames, extracted metadata, and whether columns were created.
