Agent skill

overleaf-collaboration-guide

Guide to collaborative LaTeX editing with Overleaf

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill overleaf-collaboration-guide --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/writing/latex/overleaf-collaboration-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Overleaf Collaboration Guide Set up and manage collaborative LaTeX projects on Overleaf with best practices for multi-author workflows, version control, and project organization. ## Getting Started with Overleaf ### Creating a Project Overleaf (overleaf.com) is a browser-based LaTeX editor that provides real-time collaboration, automatic compilation, and integrated version history. Project creation options: | Method | When to Use | |--------|-------------| | Blank project | Starting from scratch | | Upload project | Migrating existing local LaTeX project | | Import from GitHub | Existing repo-based project | | Use a template | Conference/journal submissions (IEEE, ACM, Springer, Elsevier templates available) | | Copy from existing | Forking a previous project | ### Recommended Project Structure ``` project-root/ ├── main.tex # Main document (entry point) ├── preamble.tex # Packages, macros, custom commands ├── sections/ │ ├── 01-introduction.tex │ ├── 02-related-work.tex │ ├── 03-methods.tex │ ├── 04-results.tex │ ├── 05-discussion.tex │ └── 06-conclusion.tex ├── figures/ │ ├── fig1-overview.pdf │ ├── fig2-results.pdf │ └── fig3-comparison.pdf ├── tables/ │ └── results-table.tex

What's inside
Steps it walks through
  1. Getting Started with Overleaf
  2. Creating a Project
  3. Recommended Project Structure
  4. Main File Setup
  5. Multi-Author Collaboration
  6. Sharing and Permissions
  7. Author Coordination Best Practices
  8. Git Integration
  9. Overleaf + GitHub Sync
  10. Overleaf + Local Git
  11. Compilation and Debugging
  12. Common Compilation Errors
  13. Debugging Tips
  14. Submission Workflow
Commands it runs
Clone your Overleaf project via git
git clone https://git.overleaf.com/YOUR_PROJECT_ID my-paper
cd my-paper
Edit locally, then push back to Overleaf
git add -A
git commit -m "Updated results table"
git push origin master
Pull changes made on Overleaf
git pull origin master
Use latexpand to flatten \input commands
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the overleaf-collaboration-guide skill do?

Guide to collaborative LaTeX editing with Overleaf

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill overleaf-collaboration-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going