From 015118f6646e95b0e2f01b068c0e06965b5737e3 Mon Sep 17 00:00:00 2001 From: Facundo Farias Date: Fri, 3 Jul 2026 20:51:39 +0200 Subject: [PATCH 1/3] readme: add "Learn more" links (site, API guides, skill) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds contextual links to the PixelVault blog guides and the agent skill — backlink assets that surface on the GitHub repo and (on next publish) the npm package page. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index f6a0092..988f1c3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ +--- +tags: + - CLI + - image-hosting + - agent-integration + - npm-package + - authentication +projects: + - PixelVault +tools: + - Node.js + - npm +--- # pixelvault-cli [![npm](https://img.shields.io/npm/v/pixelvault-cli)](https://www.npmjs.com/package/pixelvault-cli) @@ -106,6 +119,14 @@ pixelvault config get api_key # Get a value - Node.js 20+ +## Learn more + +- [PixelVault](https://pixelvault.dev) — agent-first image hosting +- [API docs](https://pixelvault.dev/docs) — full REST reference + OpenAPI 3.1 +- [Guide: Image hosting for AI agents](https://pixelvault.dev/blog/image-hosting-for-ai-agents) +- [Guide: The simplest image hosting API](https://pixelvault.dev/blog/image-hosting-api) +- [Agent skill](https://github.com/pixelvault-dev/skill) — for Claude Code, Codex, and Cursor + ## License MIT From 6998d5cead2cf1b58f2db651c0d3f268cd2d0d77 Mon Sep 17 00:00:00 2001 From: Facundo Farias Date: Mon, 27 Jul 2026 08:02:52 +0200 Subject: [PATCH 2/3] readme: drop stray YAML frontmatter The frontmatter (tags/projects/tools) renders as an ugly metadata table at the top of the README on GitHub and npm, and isn't part of the intended "Learn more" backlinks change. Remove it. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index 988f1c3..f62b13e 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,3 @@ ---- -tags: - - CLI - - image-hosting - - agent-integration - - npm-package - - authentication -projects: - - PixelVault -tools: - - Node.js - - npm ---- # pixelvault-cli [![npm](https://img.shields.io/npm/v/pixelvault-cli)](https://www.npmjs.com/package/pixelvault-cli) From 6c58300e69d9c911357e144c3e8f07d449f43456 Mon Sep 17 00:00:00 2001 From: Facundo Farias Date: Mon, 27 Jul 2026 08:10:01 +0200 Subject: [PATCH 3/3] readme: point Learn more links at canonical URLs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Link the API page directly (/image-hosting-api/) instead of the /blog/image-hosting-api path, which only resolves via a cross-repo 301 redirect — fragile for a README frozen on npm until the next publish. Drop the "Guide:" label since it's a landing page, not a blog guide. - Use trailing-slash forms for /docs/ and the AI-agents guide so each link hits Astro's canonical directory URL with no redirect hop. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f62b13e..ede5cfd 100644 --- a/README.md +++ b/README.md @@ -109,9 +109,9 @@ pixelvault config get api_key # Get a value ## Learn more - [PixelVault](https://pixelvault.dev) — agent-first image hosting -- [API docs](https://pixelvault.dev/docs) — full REST reference + OpenAPI 3.1 -- [Guide: Image hosting for AI agents](https://pixelvault.dev/blog/image-hosting-for-ai-agents) -- [Guide: The simplest image hosting API](https://pixelvault.dev/blog/image-hosting-api) +- [API docs](https://pixelvault.dev/docs/) — full REST reference + OpenAPI 3.1 +- [Guide: Image hosting for AI agents](https://pixelvault.dev/blog/image-hosting-for-ai-agents/) +- [The simplest image hosting API](https://pixelvault.dev/image-hosting-api/) - [Agent skill](https://github.com/pixelvault-dev/skill) — for Claude Code, Codex, and Cursor ## License