journalistic-portrait

journalistic-portrait is a skill for Claude Code, Codex from serejaris/kimi-skills. It costs 64 tokens per session (2,118 once invoked), scanned A, a copy of journalistic-portrait-cn, MIT.

A tool for creating static HTML magazine pages that reproduce the visual style of Southern People Weekly, a Chinese human-interest and profile magazine. It supports feature layouts, red-bordered covers, portrait contents pages, and two-column editorial pages.

In plain words
What is it for?
Use it to create magazine-style HTML for Chinese feature articles, covers, contents pages, and editorial spreads.
Why use it?
It saves time when recreating a specific magazine look with matching page structures, typography, and colors. The pages can also be printed to PDF from a browser.

Skill for Claude CodeCodex

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

Good fit Use it to create magazine-style HTML for Chinese feature articles, covers, contents pages, and editorial spreads.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/serejaris/kimi-skills/journalistic-portrait
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 serejaris/kimi-skills --skill journalistic-portrait
Clone the repo
git clone --depth 1 https://github.com/serejaris/kimi-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 journalistic-portrait

README.md
[![agentmods](https://agentmods.dev/badge/skills/serejaris/kimi-skills/journalistic-portrait/github.svg)](https://agentmods.dev/skills/serejaris/kimi-skills/journalistic-portrait)
Your own site
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/journalistic-portrait"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/journalistic-portrait/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 journalistic-portrait

Your own site · 80×15
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/journalistic-portrait"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/journalistic-portrait.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,118 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 97% copy Near-identical to another mod 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.00064 $0.02118
Opus 5 $0.00032 $0.01059
Sonnet 5 $0.00013 $0.00424
Haiku 4.5 $0.00006 $0.00212

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

Security

Grade A, and why

journalistic-portrait 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.

Origin

This is a copy

97% identical to journalistic-portrait-cn — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/journalistic-portrait/SKILL.md · 172 lines

How it starts

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

Southern People Weekly Magazine Layout Skill

Replicates the visual identity of Southern People Weekly (南方人物周刊) as HTML web pages.

Reference Source

  • Type: Uploaded PDF artifact (native PDF)
  • Reference File Type: PDF
  • Style origin: Extracted from concrete 4-page PDF visual analysis
  • Language: Chinese (Simplified) with occasional English labels

Supported Outputs

Format Supported Notes
HTML (static web page) Yes Primary output
PDF Yes Via print-to-PDF from browser
DOCX No Not applicable for magazine layout
PPTX No Not applicable for magazine layout

Default output: HTML static web page (single-file or multi-page).

Workflow

  1. Read references/style_contract.md for the complete visual style specification.
  2. Read references/structure_contract.md for the page structure rules and layout patterns.
  3. Generate HTML following all contracts and the 4 Frontend Iron Rules below.
  4. Validate each page type against the checklist in the Iron Rules section.

The 4 Frontend Iron Rules (MANDATORY — MUST APPEAR VERBATIM)

These 4 rules must be explicitly written into the generated HTML/CSS and strictly followed:


Rule 1: Cover Layering (z-index Stack)

封面分层:准确提取原件色彩,切勿将红边框设为全局背景。用 z-index 分三层:底层暗调背景图、中层报头、顶层边框与导读。

The cover page MUST use a 3-layer z-index stack. Never set the red border as a global background.

  • Layer 0 (z-index: 0): Darkened full-bleed cover photo with gradient overlay
  • Layer 1 (z-index: 1): Masthead "南方" + "人物周刊" + cover headline text
  • Layer 2 (z-index: 2): Red border frame + right-side TOC teasers + bottom info bar

CSS skeleton:

.cover-container { position: relative; width: 100%; aspect-ratio: 3/4; min-height: 900px; overflow: hidden; }
.cover-bg        { position: absolute; z-index: 0; inset: 20px; }
.cover-bg img    { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.cover-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.45)); }
.cover-masthead  { position: absolute; z-index: 1; inset: 20px; display: flex; flex-direction: column; }
.cover-frame     { position: absolute; z-index: 2; inset: 0; border: 12px solid #D90712; pointer-events: none; }
.cover-frame::after { content: ''; position: absolute; inset: 8px; border: 2px solid rgba(255,255,255,0.6); }
.cover-teasers   { position: absolute; z-index: 2; right: 60px; bottom: 120px; color: #fff; text-align: right; }
.cover-bottom-bar { position: absolute; z-index: 2; bottom: 20px; left: 20px; right: 20px; }

Read the full file on GitHub · 172 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 172 lines · 64 tokens per session scan A 54ece2efe247

Subscribe to this mod's changes

journalistic-portrait is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 64 tokens to every session and 2,118 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to journalistic-portrait-cn, differing in 4 lines, and is treated as a copy.

Related

Other skills, from other repositories

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use when the user asks to build landing pages, websites, dashboards, web components, or any frontend UI. Generates creative, polished code that avoids generic AI aesthetics.

tobihagemann/turbo · 48 tokens

slop-eval

Objectively evaluate a UI/web design against the pols.dev anti-slop design law: detect catalogued slop tells with cited evidence, score 8 weighted axes (color, type, components, layout, motion, execution, signature, cohesion), and emit a Slop Report with a 0–100 Slop Index and grade. Use when the user asks to…

fabricioctelles/skills · 142 tokens

theming

Use when building a theme or theming system for an interface. Covers token architecture, dark mode, contrast preservation across themes, and generating a coherent palette from a seed colour.

nimadorostkar/Claude-Skills-collection · 38 tokens

design-systems

Use when building or maintaining a component library and design tokens. Covers token architecture, component API design, variants and states, documentation, and governing adoption across a codebase.

nimadorostkar/Claude-Skills-collection · 38 tokens

liquid-glass

Liquid glass — Apple-style frosted, refracting surfaces. Use when the user asks for glassmorphism, frosted/translucent panels, cards, menus or a glass topbar; when a glass surface looks wrong (gray, flat, invisible, unreadable text); or when another skill needs the glass recipe.

stormaref/LiquidGlassSkill · 69 tokens

color-accessibility

Trigger on: check contrast, WCAG contrast, accessible colors, readable text color, fix low-contrast, dimmed text color, palette accessibility, pastel color, textcolor for background, make this color readable, UI theme contrast, Neovim highlight contrast. Evaluate, fix, and generate accessible fg/bg pairs with the…

tkolleh/skills · 109 tokens