kb-ai-review-lite

kb-ai-review-lite is a skill for Claude Code, Codex from pnp/sharepoint-skills. It costs 44 tokens per session (3,668 once invoked), scanned A, original, MIT.

A lightweight review procedure for SharePoint knowledge-base files. It records the review result in library fields without changing the original documents.

In plain words
What is it for?
Creating missing review columns, writing short Markdown review notes, marking review status, recording completion time, and scheduling the next review.
Why use it?
It provides a consistent review record while preventing accidental edits, draft uploads, or publication of the source files.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Creating missing review columns, writing short Markdown review notes, marking review status, recording completion time, and scheduling the next review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pnp/sharepoint-skills/kb-ai-review-lite
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add pnp/sharepoint-skills --skill kb-ai-review-lite
Clone the repo
git clone --depth 1 https://github.com/pnp/sharepoint-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kb-ai-review-lite

README.md
[![agentmods](https://agentmods.dev/badge/skills/pnp/sharepoint-skills/kb-ai-review-lite/github.svg)](https://agentmods.dev/skills/pnp/sharepoint-skills/kb-ai-review-lite)
Your own site
<a href="https://agentmods.dev/skills/pnp/sharepoint-skills/kb-ai-review-lite"><img src="https://agentmods.dev/badge/skills/pnp/sharepoint-skills/kb-ai-review-lite/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kb-ai-review-lite

Your own site · 80×15
<a href="https://agentmods.dev/skills/pnp/sharepoint-skills/kb-ai-review-lite"><img src="https://agentmods.dev/badge/skills/pnp/sharepoint-skills/kb-ai-review-lite.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,668 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 198
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00044 $0.03668
Opus 5 $0.00022 $0.01834
Sonnet 5 $0.00009 $0.00734
Haiku 4.5 $0.00004 $0.00367

Measured 12d ago against content hash 6ad219789622, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

kb-ai-review-lite scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Skills/kb-ai-review-lite/kb-ai-review-lite/SKILL.md · 433 lines

How it starts

The opening of the file, as written. The whole thing — 433 lines — stays where its author put it; the contents beside it link to each section on GitHub.

KB AI Review Lite

Goal

Perform a lightweight AI validation pass on one or more KB files and store the result as metadata only.

This sample intentionally focuses on one pattern: create required list columns when absent, then populate them.


Use Cases

Use this skill when the user asks to:

  • run a KB review
  • generate review notes
  • add missing review columns
  • mark completion and next review timing

Prompt examples:

  • "review these KB files"
  • "run AI review"
  • "create AI review columns and summarize"

Guardrails

  • Do NOT modify the original KB document content.
  • Do NOT create or upload draft Word files.
  • Do NOT publish content.
  • Only update the fields defined in this skill.
  • Return results in Markdown.

Required Columns (Create If Missing)

Before processing, inspect library schema and ensure all columns below are present.

  1. AI Review State
  • Type: Choice
  • Internal name: AIReviewState
  • Choices: Review Complete, Not Run, Published
  • Recommended default: Not Run
  1. AI Review Summary
  • Type: Note (multi-line text)
  • Internal name: AIReviewSummary
  • Required capacity: long text
  • When creating in a document library, you MUST set UnlimitedLengthInDocumentLibrary: true in the field schema at creation time. The default is false and caps input at 255 characters, which will cause writeback failures. This is not optional.
  1. AI Draft Payload
  • Type: Note (multi-line text)
  • Internal name: AIDraftPayload
  • Content format: Markdown
  • Required capacity: long text
  • When creating in a document library, you MUST set UnlimitedLengthInDocumentLibrary: true in the field schema at creation time. The default is false and caps input at 255 characters, which will cause writeback failures. This is not optional.
  1. Completed On
  • Type: DateTime
  • Internal name: CompletedOn
  1. Reviewed By
  • Type: Text
  • Internal name: ReviewedBy
  • Value guidance: current user or active agent display name

Read the full file on GitHub · 433 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 433 lines · 44 tokens per session scan A 6ad219789622

Subscribe to this mod's changes

kb-ai-review-lite is a skill published in the GitHub repository pnp/sharepoint-skills (118 stars, last pushed 3d ago), licensed MIT. It adds 44 tokens to every session and 3,668 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

html-ppt-obsidian-claude-gradient

OpenDesign's enterprise AI-adoption brief: local-first agents at work, the risk controls, the ROI, and the rollout plan. Built as a decision-grade AI literacy deck for leadership, IT, security.

nexu-io/open-design · 53 tokens

skill-doc-delivery

Convert markdown to DOCX, PPTX, XLSX, PDF office documents — use when you need exportable deliverables.

nyldn/claude-octopus · 29 tokens

skill-deck

Generate slide deck presentations from briefs — use when you need slides, pitch decks, or visual summaries.

nyldn/claude-octopus · 23 tokens

speech-to-text

Transcribe audio to text using ElevenLabs Scribe v2. Use when converting audio/video to text, generating subtitles, transcribing meetings, or processing spoken content.

calesthio/OpenMontage · 37 tokens

msgraph-files

Read OneDrive and SharePoint files via the Microsoft 365 MCP server — list folder contents, fetch item metadata, inspect versions and sharing permissions. Use when locating a document in OneDrive/SharePoint, checking who a file is shared with, or reviewing file version history.

automateyournetwork/netclaw · 58 tokens

managedcode-markitdown

Use ManagedCode.MarkItDown when a .NET application needs deterministic document-to-Markdown conversion for ingestion, indexing, summarization, or content-processing workflows. USE FOR: ManagedCode.MarkItDown integration; document ingestion flows; Office or rich-text conversion to Markdown; indexing and summarization…

managedcode/dotnet-skills · 113 tokens