journalistic-portrait-cn

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

A tool for creating Chinese magazine-style HTML pages inspired by Southern People Weekly, a Chinese human-interest and profile magazine. It supports layouts such as feature articles, red-framed covers, portrait-based contents pages, and two-column interior pages.

In plain words
What is it for?
Use it to build static HTML magazine pages for Chinese feature stories, portrait articles, covers, contents pages, and editorial spreads.
Why use it?
It reduces the work of recreating a specific editorial layout, including its typography, colors, and page structures. It can also produce a PDF through browser printing.

Skill for Claude CodeCodex

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

Good fit Use it to build static HTML magazine pages for Chinese feature stories, portrait 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-cn
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-cn
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-cn

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/journalistic-portrait-cn"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/journalistic-portrait-cn.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,129 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.00075 $0.02129
Opus 5 $0.00037 $0.01064
Sonnet 5 $0.00015 $0.00426
Haiku 4.5 $0.00007 $0.00213

Measured 8d ago against content hash 767afa76d946, 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-cn 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 8d 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

Copies of this mod

1 near-identical copy found in the catalogue:

skills/journalistic-portrait-cn/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. 8d ago First seen · 172 lines · 75 tokens per session scan A 767afa76d946

Subscribe to this mod's changes

journalistic-portrait-cn is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 75 tokens to every session and 2,129 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-09-03.

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