generate-tech-profile-json

generate-tech-profile-json is a skill for Claude Code from jasonChen0604/codebase-to-portfolio. It costs 86 tokens per session (4,413 once invoked), scanned A, original, MIT.

A skill that turns project documentation into split JSON files for a personal technology profile. JSON is a structured text format commonly used by software to store data.

In plain words
What is it for?
It reads the latest version of each project document and creates metadata, language, tag, product-group, and per-project JSON files.
Why use it?
Splitting the profile into small files makes later updates focus on changed projects instead of rebuilding one large file.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md.

Part of the codebase-to-portfolio plugin — 6 skills shipped together

Good fit It reads the latest version of each project document and creates metadata, language, tag, product-group, and per-project JSON files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jasonchen0604/codebase-to-portfolio/generate-tech-profile-json
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 jasonChen0604/codebase-to-portfolio --skill generate-tech-profile-json
Clone the repo
git clone --depth 1 https://github.com/jasonChen0604/codebase-to-portfolio

Made for: Claude Code.

Or install codebase-to-portfolio, the plugin that ships this one along with the rest of its 6 skills.

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 generate-tech-profile-json

README.md
[![agentmods](https://agentmods.dev/badge/skills/jasonchen0604/codebase-to-portfolio/generate-tech-profile-json/github.svg)](https://agentmods.dev/skills/jasonchen0604/codebase-to-portfolio/generate-tech-profile-json)
Your own site
<a href="https://agentmods.dev/skills/jasonchen0604/codebase-to-portfolio/generate-tech-profile-json"><img src="https://agentmods.dev/badge/skills/jasonchen0604/codebase-to-portfolio/generate-tech-profile-json/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 generate-tech-profile-json

Your own site · 80×15
<a href="https://agentmods.dev/skills/jasonchen0604/codebase-to-portfolio/generate-tech-profile-json"><img src="https://agentmods.dev/badge/skills/jasonchen0604/codebase-to-portfolio/generate-tech-profile-json.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,413 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.
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.00086 $0.04413
Opus 5 $0.00043 $0.02207
Sonnet 5 $0.00017 $0.00883
Haiku 4.5 $0.00009 $0.00441

Measured 9d ago against content hash 55778c700638, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

generate-tech-profile-json 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 9d 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/generate-tech-profile-json/SKILL.md · 354 lines

How it starts

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

Generate Tech Profile JSON Skill

Goal

Read all project docs (doc_filename) with the latest skill_version, extract structured frontmatter data, then generate a tech-profile/ split-file directory (schema version 2.0).

Output layout:

tech-profile/
├── meta.json                  # meta + profile + linkedin + id_map
├── domains-<lang>.json        # one per configured language
├── tag-index-<lang>.json      # one per configured language
├── product-groups-<lang>.json # one per configured language
└── projects/
    ├── <hash>.<lang>.json     # one file per project, per configured language

Why split? Each file is 1–15KB. Incremental runs only rewrite changed project files + rebuild the index files. Token cost scales with changed projects, not total project count.

Incremental update logic:

  1. Load existing tech-profile/meta.json → get id_map and source_version
  2. Load all tech-profile/projects/*.<primary_lang>.json → build in-memory cache
  3. For each project: compute hash, compare cached skill_version
    • Unchanged → skip (reuse cached file, zero token cost)
    • New or changed → read the doc file, write <hash>.<lang>.json for each configured language
  4. Always rebuild index files (domains, tag-index, product-groups) from all project files
  5. Write meta.json with updated totals

On first run (no existing tech-profile/), process all projects.

Step 0: Read config

Read profile.config.json from the current working directory. If missing, tell the user to copy examples/profile.config.example.json to profile.config.json and fill it in, then stop.

  • profile.name, profile.email, profile.title, profile.years_of_experience — used directly in the profile JSON block (if years_of_experience is absent, derive from the oldest project's last commit)
  • doc_filename (default CLAUDE.md)
  • languages (default ["en"])
  • timezone (default +00:00)
  • privacy_blocklist (default [])
  • custom_domains (default {}) — merged into the built-in domain table in Step 4

Read the full file on GitHub · 354 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. 9d ago First seen · 354 lines · 86 tokens per session scan A 55778c700638

Subscribe to this mod's changes

generate-tech-profile-json is a skill published in the GitHub repository jasonChen0604/codebase-to-portfolio (2 stars, last pushed 1mo ago), licensed MIT. It adds 86 tokens to every session and 4,413 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

karpathy-llm-wiki

Use when building or maintaining a personal LLM-powered knowledge base. Triggers: ingesting sources into a wiki, querying wiki knowledge, linting wiki quality, 'add to wiki', 'what do I know about', or any mention of 'LLM wiki' or 'Karpathy wiki'.

Astro-Han/karpathy-llm-wiki · 67 tokens

init

Install or update OwnMem in the current repository. Use when the user asks to set up OwnMem, add local project memory for coding agents, or refresh an existing OwnMem installation after a version bump.

grpcer/ownmem · 43 tokens

daily-journal

A passive daily work journal that Claude keeps FOR you so you never have to write it yourself. Append short entries after meaningful work (what was done, what you focused on, artifacts touched) to 01-daily/journal/YYYY-MM-DD.md. Run a guided reflection at night or in the morning. Use when you run /daily-journal, say…

huytieu/COG-second-brain · 107 tokens

doc-drift

Use this skill when the user wants to audit the memory and documents Claude Code loads into context — CLAUDE.md (user global + project + nested), MEMORY.md, @imports, .claude/skills, .claude/agents, .claude/commands, installed plugins — and detect four kinds of issues: outdated claims, mutually contradictory…

AlexZio00/sovereign-skills · 240 tokens

ijfw-handoff

Session handoff generation and loading. Trigger: session end, context full, /handoff.

FerroxLabs/ijfw · 23 tokens

memex-sync

Sync Zettelkasten cards across devices via git.

iamtouchskyer/memex · 15 tokens