From agent-skills
Use when creating or revising academic paper sections, formatting tables/figures for journal submission, writing referee responses, or adapting papers to journal-specific requirements in finance, economics, and real estate research.
npx claudepluginhub agentic-assets/agent-skillsThis skill uses the workspace's default tool permissions.
Professional LaTeX manuscript drafting and revision for academic research in finance, economics, and real estate. Transforms template structures into publication-ready manuscripts with proper academic writing conventions.
assets/bibtex/README.mdassets/bibtex/jfe.bstassets/templates/Appendix.texassets/templates/Data_Documentation.texassets/templates/Figures.texassets/templates/Internet_Results.texassets/templates/Main.texassets/templates/Results.texassets/templates/referee_response.texreferences/common-mistakes.mdreferences/econometric-analysis-integration.mdreferences/econometric-reporting.mdreferences/hypothesis-development.mdreferences/introduction-patterns.mdreferences/journal-formats.mdreferences/paper-structure.mdreferences/referee-responses.mdreferences/results-discussion.mdreferences/writing-conventions.mdrequirements.txtSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Share bugs, ideas, or general feedback.
Professional LaTeX manuscript drafting and revision for academic research in finance, economics, and real estate. Transforms template structures into publication-ready manuscripts with proper academic writing conventions.
% Request: "Write the Results section describing Table 1 (summary statistics)"
% Fills out Writing/sections/Results.tex template with research-specific content
% Request: "Draft a response to Reviewer 2's endogeneity concern"
% Uses referee-responses.md patterns for point-by-point response
# Request: "Check if all tables mentioned in text exist and numbers match"
python scripts/check_consistency.py Writing/Main.tex
When to use: Writing a new paper or major revision
Process:
references/paper-structure.md for templates[PLACEHOLDER] textreferences/writing-conventions.mdExample sections:
references/introduction-patterns.md for 3-paragraph framingreferences/results-discussion.md for table walkthrough structurereferences/hypothesis-development.md for theory→prediction flowWhen to use: R&R (revise and resubmit) stage
Process:
references/referee-responses.mdassets/templates/referee_response.texassets/templates/revision_diff.tex for highlightingCommon referee objections covered:
When to use: Preparing submission or resubmission
Process:
references/journal-formats.mdreferences/paper-structure.md - Section-by-section templates with annotated examplesreferences/introduction-patterns.md - Framing patterns (motivation → gap → contribution)references/hypothesis-development.md - Theory to testable prediction scaffoldingreferences/results-discussion.md - Table walkthrough patterns, magnitude interpretationreferences/writing-conventions.md - Academic tone, active vs passive voice, hedgingreferences/referee-responses.md - Common objections, response frameworks, tone guidancereferences/common-mistakes.md - Frequent writing issues (vague contributions, weak hypotheses, poor table discussion)references/journal-formats.md - JF, JFE, RFS, Real Estate Economics, JFQA formatting requirementsreferences/econometric-reporting.md - Coefficient interpretation, significance reporting, fixed effects notationreferences/econometric-analysis-integration.md - Integrating data (wrds-data-pull) and analysis (pyfixest-latex or stata-accounting-research-master) with manuscript writingWhen to use: Need to run econometric analysis before/during writing Results section, generate regression tables/figures, or address referee requests for additional tests
Covers:
scripts/01-check_citations.pyCitation key validator - verifies all \cite{} commands have corresponding bibliography entries
Usage:
python scripts/01-check_citations.py # Configure LATEX_FILE path in script
Features:
unused-references.bibConfiguration: Edit lines 36-48 to set LATEX_FILE path, output options, and behavior flags
scripts/02-bibtex_validator.pyAdvanced BibTeX validation using OpenAlex API
Usage:
python scripts/02-bibtex_validator.py # Configure paths in script
Features:
Configuration: Edit lines 36-73 to set BIB_FILE_PATH, MAIN_DOC_PATH, API keys, and validation thresholds
Requirements: pip install bibtexparser pyalex requests
scripts/latex_section_word_counter.pySection-by-section word counter for LaTeX documents
Usage:
python scripts/latex_section_word_counter.py # Configure file_path in script
Features:
\section{} of LaTeX documentConfiguration: Edit line 256 to set target .tex file path
scripts/check_consistency.pyInternal consistency validator for cross-references, notation, and hypothesis mapping
Usage:
python scripts/check_consistency.py Writing/Main.tex [--check-citations]
Checks:
\ref{tab:X} references point to existing \label{tab:X} definitionsassets/templates/)Complete LaTeX manuscript templates with extensive placeholder guidance for new research projects.
assets/templates/Main.tex - Full LaTeX preamble and document structure
pdflatex → bibtex → pdflatex × 2assets/templates/Results.tex - Results section with table formatting templates
\input{} commands for dynamic table integration from Results/Tables/assets/templates/Figures.tex - Figure formatting and layout examples
assets/templates/Appendix.tex - Online appendix structure
assets/templates/Internet_Results.tex - Internet appendix tables
assets/templates/Data_Documentation.tex - Data sources and methodology documentation
assets/templates/referee_response.tex - Point-by-point referee response letter
Usage: Copy assets/templates/ files to your project, replace [PLACEHOLDER] content with research-specific details, preserve LaTeX structure.
assets/bibtex/)assets/bibtex/jfe.bst - Journal of Financial Economics styleassets/bibtex/jf.bst - Journal of Finance styleassets/bibtex/qje.bst - Quarterly Journal of Economics styleSee references/introduction-patterns.md for annotated examples.
See references/results-discussion.md for table-by-table walkthrough patterns.
See references/referee-responses.md for tone guidance and response frameworks.
This skill works with existing LaTeX templates in Writing/sections/:
Your role: Fill these templates with research-specific content while preserving LaTeX structure.
Example 1: Write Results section for Table 2
User: "I just generated Table 2 (main regression results). Write the Results section text describing these findings."
Response process:
1. Read Results/Tables/Table_02_main_results.tex to understand table structure
2. Load references/results-discussion.md for table walkthrough patterns
3. Fill Writing/sections/Results.tex template for Table 2 section
4. Include: coefficient interpretation, economic magnitude, hypothesis testing, significance levels
5. Ensure cross-reference \ref{tab:main_results} matches \label in table
Example 2: Respond to endogeneity concern
User: "Reviewer 2 says treatment is endogenous. How do I respond?"
Response process:
1. Load references/referee-responses.md for endogeneity response frameworks
2. Identify available responses: IV, natural experiment, bounds, robustness
3. Draft point-by-point response using assets/templates/referee_response.tex
4. Suggest additional analyses if needed (placebo tests, event studies)
Example 3: Check paper consistency
User: "Check if my paper has consistency issues before submission"
Response process:
1. Run scripts/check_consistency.py on Writing/Main.tex
2. Report: missing cross-references, table/figure numbering gaps, notation inconsistencies
3. Verify hypothesis-result mapping (H1 tested in Table 2, H2 in Table 3, etc.)
4. Check citation completeness via Tests/check_citations.py wrapper
Example 4: Integrate econometric analysis with writing
User: "I need to run regressions and write my Results section. I have WRDS access."
Response process:
1. Load references/econometric-analysis-integration.md for workflow guidance
2. Recommend three-skill workflow:
a. "Use wrds-data-pull to pull and merge Compustat + CRSP data"
b. "Use pyfixest-latex to generate Tables 1-3 with PyFixest → LaTeX output"
c. "Use academic-writing to write Results section"
3. After tables generated: Load references/results-discussion.md for writing patterns
4. Write Results section with proper coefficient interpretation and economic magnitudes
5. Integrate tables with \input{../Results/Tables/Table_02.tex} commands
introduction-patterns.md when writing introduction)This skill uses progressive loading:
Load reference files only when actively working on that specific section or task.