vishalsachdev/claude-code-skills
Professional skills for Claude Code following the Agent Skills open specification
npx skills add vishalsachdev/claude-code-skillsREADME
Claude Code Skills by Vishal Sachdev
Professional skills for Claude Code following the Agent Skills open specification.
š Available Skills
š Paper Writing
Comprehensive academic paper writing guidance with expert workflows, templates, and quality checking tools.
Perfect for:
- Research papers and journal articles
- Conference papers (ACM, IEEE, etc.)
- Technical reports and white papers
- Thesis chapters and dissertations
- Literature reviews and survey papers
What's included:
- 4 comprehensive reference guides (69KB total)
- Elite IS Papers (Thatcher's 17 Rules)
- Writing Guidelines (argument, evidence, citations, ethics)
- Structure Templates (7 paper types)
- Style Guide (clarity, precision, revision)
- 2 detailed paper templates
- Research Paper (IMRAD format)
- Conference Paper (CS/Engineering)
- Quality checker script (automated style analysis)
- 3,478 lines of expert guidance
Based on:
- Thatcher, Jason Bennett (2024). "Rules for Writing Elite Information Systems Papers." SSRN: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5993034
- APA Style (7th Edition)
- IEEE Editorial Style
- Academic writing best practices from Ohio University, Duke, MIT, USC, UCSD
š Full Documentation | š¾ Download v1.0.0
š Quick Start
Installation
Option 1: Download pre-packaged skill
# Download the .skill file
curl -L https://github.com/vishalsachdev/claude-code-skills/releases/download/v1.0.0/paper-writing-v1.0.0.skill -o paper-writing.skill
# Extract to Claude Code skills directory
unzip paper-writing.skill -d ~/.claude/skills/paper-writing
# Verify installation
ls -la ~/.claude/skills/paper-writing/
Option 2: Clone and copy
# Clone this repository
git clone https://github.com/vishalsachdev/claude-code-skills.git
# Copy specific skill
cp -r claude-code-skills/skills/paper-writing ~/.claude/skills/
# Verify installation
ls -la ~/.claude/skills/paper-writing/
Usage
Skills automatically activate in Claude Code when relevant to your task. For example:
- Start typing "Help me write a research paper..." ā Paper Writing skill activates
- "Review my paper's introduction..." ā Paper Writing skill provides guidance
- "What's the best structure for a literature review?" ā Paper Writing skill loads templates
You can also manually invoke skills by referencing them directly in your conversation.
š Repository Structure
claude-code-skills/
āāā README.md # This file
āāā CONTRIBUTING.md # Contribution guidelines
āāā LICENSE # Repository license
āāā skills/ # Source skills
ā āāā paper-writing/ # Paper writing skill
ā āāā SKILL.md # Main skill file
ā āāā LICENSE.txt # Skill license
ā āāā references/ # Reference materials
ā ā āāā ELITE-PAPERS.md
ā ā āāā REFERENCE.md
ā ā āāā STRUCTURE.md
ā ā āāā STYLE.md
ā āāā assets/ # Templates
ā ā āāā research-paper-template.md
ā ā āāā conference-paper-template.md
ā ā āāā README.md
ā āāā scripts/ # Helper scripts
ā āāā check_paper.py
āāā releases/ # Packaged .skill files
ā āāā paper-writing-v1.0.0.skill
āāā .github/
āāā workflows/
āāā package-skills.yml # Auto-packaging workflow
š¤ Contributing
Contributions are welcome! Whether you want to:
- Report a bug
- Suggest improvements
- Add new skills
- Fix documentation
See CONTRIBUTING.md for guidelines.
š About Agent Skills
These skills follow the Agent Skills open specification, which means:
- ā Portable - Works across any AI platform that adopts the standard
- ā Modular - Each skill is self-contained and composable
- ā Progressive - Loads content only when needed to conserve context
- ā Open - Simple markdown format, easy to read and modify
Skills are not locked to Claude - the same skill format works across AI platforms and tools that adopt the Agent Skills standard.
š License
This repository is licensed under the MIT License - see LICENSE file for details.
Individual skills may have their own licenses - check each skill's LICENSE.txt file.
š Links
- Agent Skills Specification
- [Claude Code Docu
...