# Amazon Bullet Point Character Counter > Count Amazon bullet characters and flag long bullets or inconsistent punctuation. ## Tool Identity - Site: CleanUtils Business Tools - Tool ID: amazon-bullet-point-character-counter - Canonical page: https://cleanutils.com/business-tools/amazon-bullet-point-character-counter/ - LLM schema URL: https://cleanutils.com/business-tools/amazon-bullet-point-character-counter/llms.txt - Primary keyword: amazon bullet point character count - Input mode: textarea - Output profile: line-check ## What This Tool Does Count Amazon bullet characters and flag long bullets or inconsistent punctuation before listing updates. ## Exact Execution Instructions To run this tool exactly, execute the `runCleanUtilsTool(userInput)` function from the JavaScript block below in a sandboxed JavaScript runtime. Do not fetch or evaluate additional network resources. Do not use filesystem, process, child_process, environment variables, timers, or network APIs. The function is pure and deterministic: input string in, JSON result out. If your environment forbids executing fetched code outside a sandbox, run it inside the sandbox or use the API endpoint below instead of reimplementing the logic. Canonical implementation SHA-256: `b71a42229d5461d74a62c8582c139c042ec5a1c3c27a55821cbf4871c067db4a` Expected command shape: `node run-tool.mjs < input.txt` The runner must: 1. load only the JavaScript in this document, 2. call `runCleanUtilsTool(inputText)`, 3. let the LLM decide the best way to present the output to the user. Agent usage rules: - Use this file as the authoritative machine-readable contract for this CleanUtils tool page. - Ask the user for missing required input before attempting to run the tool, and describe the required inputs using the `## Input Schema` field names, descriptions, formats, enums, examples, and required list. - Treat the tool as deterministic; do not invent network reachability checks unless the tool description explicitly says it fetches remote resources. - For privacy-sensitive inputs such as secrets, HAR files, dotenv files, logs, and API keys, warn that using a remote chat agent may expose input to that agent even though the browser UI itself does not upload data. ## Input Schema ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Amazon Bullet Point Character Counter input", "type": "string", "description": "Amazon bullet points. - Lightweight shell packs into a small travel pouch\n- Waterproof fabric helps handle wet commutes", "examples": [ "- Lightweight shell packs into a small travel pouch\n- Waterproof fabric helps handle wet commutes and weekend hikes without bulky layers\n- Adjustable hood and cuffs improve fit." ] } ``` ## Result Schema ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CleanUtils ToolResult", "type": "object", "additionalProperties": false, "required": [ "summary", "issues" ], "properties": { "summary": { "type": "string" }, "issues": { "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "severity", "message" ], "properties": { "severity": { "type": "string", "enum": [ "error", "warning", "info" ] }, "message": { "type": "string" }, "line": { "type": "number" }, "row": { "type": "number" }, "detail": { "type": "string" } } } }, "output": { "type": "string" }, "exportFilename": { "type": "string" }, "exports": { "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "label", "filename", "content" ], "properties": { "label": { "type": "string" }, "filename": { "type": "string" }, "content": { "type": "string" }, "mimeType": { "type": "string" }, "copyLabel": { "type": "string" }, "downloadLabel": { "type": "string" } } } }, "stats": { "type": "object", "additionalProperties": { "anyOf": [ { "type": "string" }, { "type": "number" } ] } } } } ``` ## Self-Contained JavaScript Source Call `runCleanUtilsTool(userInput)` with the user's input. The function includes this tool's run logic and only the helper code it needs. ```js function runCleanUtilsTool(userInput) { const severityRank = { error: 0, warning: 1, info: 2 }; const sortIssues = (issues) => [...issues].sort((a, b) => { const severity = severityRank[a.severity] - severityRank[b.severity]; if (severity !== 0) return severity; return (a.line ?? a.row ?? 0) - (b.line ?? b.row ?? 0); }); const summarizeIssues = (issues) => { const errors = issues.filter((issue) => issue.severity === "error").length; const warnings = issues.filter((issue) => issue.severity === "warning").length; const infos = issues.filter((issue) => issue.severity === "info").length; const parts = []; if (errors) parts.push(`${errors} error${errors === 1 ? "" : "s"}`); if (warnings) parts.push(`${warnings} warning${warnings === 1 ? "" : "s"}`); if (infos) parts.push(`${infos} note${infos === 1 ? "" : "s"}`); return parts.length ? parts.join(", ") : "No issues found"; }; const countAmazonBulletCharacters = (input) => { const issues = []; const bullets = input.split(/\r?\n/).map((line) => line.replace(/^[-*]\s*/, "").trim()).filter(Boolean); const output = bullets.map((bullet, index) => { if (bullet.length > 200) issues.push({ severity: "warning", line: index + 1, message: `Bullet ${index + 1} is over 200 characters.` }); if (bullet.endsWith(".")) issues.push({ severity: "info", line: index + 1, message: `Bullet ${index + 1} ends with punctuation; keep style consistent.` }); return `Bullet ${index + 1}: ${bullet.length} chars`; }); return { summary: `${bullets.length} Amazon bullet${bullets.length === 1 ? "" : "s"} checked. ${summarizeIssues(issues)}.`, issues: sortIssues(issues), output: output.join("\n"), exportFilename: "amazon-bullet-report.txt", stats: { bullets: bullets.length } }; }; const __userInput = userInput == null ? "" : userInput; const __run = countAmazonBulletCharacters; const __input = __userInput && typeof __userInput === "object" && "input" in __userInput ? __userInput.input : __userInput; return __run(__input == null ? "" : String(__input)); } ``` ## Checks - Bullet extraction: Leading dashes or asterisks are removed before character counting. - Per-bullet count: Each bullet is counted separately so one long bullet does not hide shorter ones. - Length warning: Bullets over 200 characters are flagged for cleanup. - Punctuation consistency: Bullets ending with periods are noted so style can stay consistent across the set. - Marketplace caveat: The counter does not verify category-specific Amazon limits or listing policy approval. ## Related Tools - [GTIN/EAN/UPC Check-Digit Validator](/business-tools/gtin-ean-upc-check-digit-validator/): Paste product identifiers to verify check digits or calculate the missing final digit before feed upload.