Article Writing logo

Article Writing

Community
brucesongs
article-writing

Transform technical findings into clear, structured written content: penetration test reports, vulnerability disclosures, security blog posts, and technical documentation.

Overview

Publisherbrucesongs
Repositorykali-claw
Skill namearticle-writing
Stars
70
Forks
18
Bundled files
15
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 15 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by brucesongs on GitHub. Read the source before you install it.

Installation

Install the Article Writing AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/brucesongs/kali-claw.git /tmp/kali-claw
mkdir -p .claude/skills
cp -r /tmp/kali-claw/skills/article-writing .claude/skills/article-writing
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Article Writing in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Article Writing on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Article Writing is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Article Writing

Summary

Article Writing skill domain covering knowledge operations.

Domain: knowledge

Skill Identity

AttributeValue
DomainDocumentation & Communication
Skill IDarticle-writing
Version1.0.0
Hacker LawsLaw 8 (Learn from Every Operation), Law 11 (Share Knowledge, Build Legacy)
Related Skillsknowledge-ops, deep-research

Purpose

Transform technical findings into clear, structured written content: penetration test reports, vulnerability disclosures, security blog posts, and technical documentation.

Writing is the final step in the intelligence workflow — turning raw findings into actionable deliverables for clients, researchers, or the public.

Article Types

TypeAudienceFormatLength
Pentest ReportClient (technical + executive)Executive Summary + Technical Findings10-50 pages
Vulnerability DisclosureVendor security teamCVE template + PoC2-5 pages
Security Blog PostPublic (technical)Narrative + code samples1000-3000 words
AdvisoryPublic (mixed audience)CVSS + mitigation steps500-1500 words
Technical DocumentationInternal teamHow-to guideVariable

Methodology

Phase 1: Gather Intelligence

bash
# Aggregate all findings from knowledge-ops
grep -rn "type: finding" memory/*target*.md | wc -l

# Extract high-confidence findings (>= 75)
grep -rn "confidence: [789][0-9]\|confidence: 100" memory/*target*.md -l | \
  xargs grep -h "## Summary"

# Group by severity
grep -rn "tags:.*critical\|tags:.*high" memory/*target*.md

Phase 2: Structure Content

Follow the appropriate template (see below) for the article type. Outline before writing.

Phase 3: Write

  • Executive Summary: Non-technical, business impact-focused
  • Technical Detail: Reproducible, includes code/commands
  • Evidence: Screenshots, logs, PoC code
  • Recommendations: Actionable remediation steps

Phase 4: Review

  • Technical accuracy check
  • No sensitive data leakage (sanitize IPs, domains, credentials)
  • CVSS scoring (if applicable)
  • Proofread for clarity

Templates

Pentest Report Template

markdown
# Penetration Test Report: [Client Name]

**Date**: [date]
**Version**: [version]
**Prepared by**: [your org]
**Classification**: [Confidential/Restricted]

---

## Executive Summary

[Target]: [description of target scope]
[Duration]: [test dates]
[Findings Summary]: [count by severity]

### Key Findings

- **Critical**: [count] — [one-line impact]
- **High**: [count] — [one-line impact]
- **Medium**: [count] — [one-line impact]
- **Low**: [count] — [one-line impact]

### Business Impact

[2-3 sentences on overall risk to the organization]

### Recommendations Priority

1. [Most critical fix]
2. [Second priority]
3. [Third priority]

---

## Scope

**In Scope**:
- [systems/domains tested]

**Out of Scope**:
- [systems excluded]

**Testing Methodology**: [OWASP, PTES, custom]

---

## Findings

### Finding 1: [Vulnerability Name]

**Severity**: Critical
**CVSS**: 9.8 (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H)
**Affected Systems**: [list]

##

## Description

[What is the vulnerability? How does it work?]

#### Evidence

```bash
[Commands used to discover/exploit]

[Screenshot or log output]

Impact
  • Confidentiality: [High/Medium/Low] — [why]
  • Integrity: [High/Medium/Low] — [why]
  • Availability: [High/Medium/Low] — [why]
Remediation

Short-term: [immediate fix] Long-term: [architectural improvement]

Verification: [how to verify fix]


[Continue for all findings]


Appendix

Tools Used

  • [tool list with versions]

Testing Timeline

DateActivity
[date]Reconnaissance
[date]Vulnerability scanning
[date]Manual testing
[date]Exploitation
[date]Reporting

References

  • [OWASP guides, CVE references, etc.]

### Vulnerability Disclosure Template

```markdown
# Vulnerability Disclosure: [Vulnerability Name]

**Date**: [discovery date]
**Severity**: [Critical/High/Medium/Low]
**CVSS**: [score] ([vector])
**CVE ID**: [if assigned, otherwise "Pending"]

---

## Affected Products

- **Product**: [name]
- **Versions**: [affected versions]
- **Fixed in**: [patched version, if known]

## Vulnerability Details

### Type

[SQL Injection / XSS / SSRF / etc.]

### Location

- **File**: [file path or URL]
- **Parameter**: [vulnerable parameter]
- **Method**: [GET/POST/etc.]

### Root Cause

[Technical explanation of why the vulnerability exists]

## Proof of Concept

```bash
[Minimal PoC to reproduce]

Expected Result: [what should happen] Actual Result: [what happens, demonstrating the vuln]

Impact

[Detailed impact analysis — what can an attacker achieve?]

Remediation

Developer Fix

diff
[Code diff showing the fix, if simple]

Workaround (if patch not available)

[Temporary mitigation steps]

Timeline

DateEvent
[date]Vulnerability discovered
[date]Vendor notified
[date]Vendor acknowledged
[date]Patch released
[date]Public disclosure

Credits

[Your name/org]

Detection Methods

Content Authenticity Audit

  • AI-generated text detection: Statistical analysis (perplexity, burstiness) for AI fingerprints.
  • Plagiarism detection: Content matching against existing web corpus (Copyscape, Turnitin).
  • Style anomalies: Sudden style change in author's corpus; co-author compromise.

SIEM Detection Rules

  • Custom content analytics: Per-author baseline; alert on deviation.

Defense Evasion Techniques

AI Content Stealth

  • Humanize AI output: Use Wordtune, Quillbot to add human-like variance.
  • Mixed authorship: Combine AI-generated sections with human-written sections; reduces perplexity anomaly.
  • Style mimicry: Train model on target author's corpus; mimic their style.

References

  • [Related CVEs, vendor advisories, etc.]

### Security Blog Post Template

```markdown
# [Catchy Title]: [One-Sentence Hook]

**Published**: [date]
**Author**: [name]
**Tags**: [tag1, tag2, tag3]

---

## TL;DR

[2-3 sentences summarizing the entire post]

---

## Introduction

[Set the stage — why does this topic matter? What problem are you solving?]

## Background

[Context needed to understand the vulnerability/technique/tool]

## Discovery

[How did you find this? What were the initial signals?]

## Deep Dive

[Technical details — this is the meat of the post]

### Step 1: [Phase Name]

[Description]

```bash
[Commands]

[Output/screenshot]

Step 2: [Phase Name]

[Continue for all steps]

Impact & Exploitation

[What can an attacker do with this? Real-world scenarios]

Detection & Mitigation

For Defenders

  • [Detection method 1]
  • [Detection method 2]

For Developers

  • [Secure coding practice to prevent this]

Conclusion

[Wrap up — key takeaways, call to action]

References

  • [Links to related research, tools, CVEs]

## Use Cases

1. **Pentest Deliverable**: Final report for client after engagement
2. **Responsible Disclosure**: Notify vendor of discovered vulnerability
3. **Knowledge Sharing**: Publish research findings publicly
4. **Internal Documentation**: Record methodology for team playbooks
5. **Advisory Publishing**: Warn community of active threat

## Writing Best Practices

- **Be precise**: Use exact file paths, line numbers, version numbers
- **Be reproducible**: Include all commands, payloads, and environment details
- **Be cautious**: Sanitize sensitive data (IPs, domains, real credentials)
- **Be visual**: Screenshots, diagrams, code blocks
- **Be actionable**: Every finding needs a clear fix

## Integration

- **Input**: knowledge-ops findings, test-cases validation results
- **Output**: Markdown/PDF reports, blog posts, advisories
- **Handoff**: Share with client, vendor, or publish publicly

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Article Writing AI skill do?

Transform technical findings into clear, structured written content: penetration test reports, vulnerability disclosures, security blog posts, and technical documentation.

Why use Article Writing on TypingMind?

Because you install it once and use it with any model. Article Writing is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Article Writing in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/brucesongs/kali-claw/tree/main/skills/article-writing. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Article Writing?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Article Writing?

As many as you like. As long as a model supports skills, you can use Article Writing with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Article Writing AI skill free?

Yes. It is published on GitHub by brucesongs under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇