
Unisecurityguard Academic Whistleblower Archive
Mirror censored social posts and employment evidence into a durable GitHub Markdown archive when primary platforms may remove your story.
Install
npx skills add https://github.com/aradotso/security-skills --skill unisecurityguard-academic-whistleblower-archiveWhat is this skill?
- GitHub README + assets/ pattern for screenshots and testimonial evidence
- Trigger phrases for Xiaohongshu (Little Red Book) backup and institutional misconduct docs
- Censorship-resistant narrative structure for academic employment transparency
- Markdown-first workflow suited to solo maintainers without a custom CMS
Adoption & trust: 378 installs on skills.sh; 1 GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Lark Doclarksuite/cli
Lark Wikilarksuite/cli
Opensource Guide Coachxixu-me/skills
Readme I18nxixu-me/skills
Doc Coauthoringanthropics/skills
Obsidian Markdownkepano/obsidian-skills
Journey fit
Primary fit
Long-running transparency archives are operated and updated as threats and takedowns evolve, not a one-shot validate spike. Iterate covers preserving evidence, refreshing README narratives, and maintaining immutable public documentation.
Common Questions / FAQ
Is Unisecurityguard Academic Whistleblower Archive safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Unisecurityguard Academic Whistleblower Archive
# UniSecurityGuard Academic Whistleblower Archive > Skill by [ara.so](https://ara.so) — Security Skills collection. ## Overview UniSecurityGuard is a GitHub-based archive platform documenting the experience of a Chinese academic who transitioned from associate professor to security guard. The project serves as a censorship-resistant backup for social media content that faces institutional pressure and platform removal. It demonstrates how to use GitHub as a transparent, immutable documentation platform for whistleblowing and advocacy. **Key Use Case**: Preserving evidence of academic employment issues, institutional misconduct, and career transitions when primary platforms (Xiaohongshu/Little Red Book) are threatened with censorship. **Primary Language**: Markdown (documentation-focused) **Repository Structure**: - README.md: Main narrative and updates - assets/: Screenshots and image evidence - Issues section: Community Q&A and documentation ## Installation & Setup ### Fork or Clone for Your Own Archive ```bash # Clone the repository git clone https://github.com/UniSecurityGuard/UniSecurityGuard.git cd UniSecurityGuard # Create your own backup archive (fork approach) # 1. Fork via GitHub UI # 2. Clone your fork git clone https://github.com/YOUR_USERNAME/YOUR_ARCHIVE_NAME.git cd YOUR_ARCHIVE_NAME ``` ### Initialize Your Own Archive ```bash # Create basic structure mkdir -p assets/{screenshots,documents,evidence} touch README.md touch TIMELINE.md touch FAQ.md # Initialize git git init git add . git commit -m "Initial archive setup" # Push to GitHub (create repo first on github.com) git remote add origin https://github.com/YOUR_USERNAME/YOUR_ARCHIVE.git git branch -M main git push -u origin main ``` ## Core Patterns ### 1. Document Progressive Updates The project uses the README.md as a chronological narrative with new updates at the top: ```markdown # [Latest Update - Critical Situation] ## [Date]: Current Status Description of latest developments... ## [Earlier Date]: Previous Situation Earlier context... ## Background Original story and context... ``` ### 2. Asset Organization Store evidence systematically: ```bash assets/ ├── screenshots/ │ ├── 1.jpg # Numbered chronologically │ ├── 2.jpg │ └── 3.jpg ├── documents/ │ ├── contract.pdf │ └── correspondence.pdf └── evidence/ ├── salary_records/ └── institutional_communications/ ``` ### 3. Embed Images in README ```markdown ## Evidence Documentation <img src="assets/screenshots/1.jpg" width="400" alt="Description of evidence"> <img src="assets/screenshots/2.jpg" width="400" alt="Context"> <img src="assets/screenshots/3.jpg" width="400" alt="Timeline proof"> ``` ### 4. Use Issues for FAQ and Community Support The project uses 154+ issues as a documentation and Q&A system: ```markdown # Create structured issues for common questions Issue #1: "关于学校施压的详细情况" (Details about institutional pressure) Issue #2: "如何保护自己在类似情况下" (How to protect yourself in similar situations) Issue #3: "法律建议和资源" (Legal advice and resources) ``` ## Real-World Implementation Examples ### Example 1: Creating a Censorship-Resistant Archive ```bash #!/bin/bash # backup_social_media.sh # Automate archiving of social media content to GitHub ARCHIVE_DIR="./archive/$(date +%Y-%m-%d)" mkdir -p "$ARCHIVE_DIR" # Download screenshots (manual or automated via APIs) # Save to ar