Rename project from claude-research-skills to agent-research-skills

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lingzhi Yang
2026-02-20 16:36:36 -05:00
parent 4a095887df
commit 844aed4bc4
2 changed files with 8 additions and 8 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
# claude-research-skills # agent-research-skills
30 skills for [Claude Code](https://claude.ai/code) covering the full academic research paper lifecycle — from literature search to slide generation. 30 skills for [Claude Code](https://claude.ai/code) covering the full academic research paper lifecycle — from literature search to slide generation.
@@ -9,7 +9,7 @@ Extracted from 17 GitHub repos studying LLM-agent-driven research automation. Se
### One-line install ### One-line install
```bash ```bash
npx skills add lingzhi227/claude-research-skills -g -a claude-code npx skills add lingzhi227/agent-research-skills -g -a claude-code
``` ```
> Use the `-g` (global) flag. Scripts use `~/.claude/skills/` paths that require global installation. > Use the `-g` (global) flag. Scripts use `~/.claude/skills/` paths that require global installation.
@@ -17,9 +17,9 @@ npx skills add lingzhi227/claude-research-skills -g -a claude-code
### Post-install setup ### Post-install setup
```bash ```bash
git clone https://github.com/lingzhi227/claude-research-skills.git /tmp/claude-research-skills git clone https://github.com/lingzhi227/agent-research-skills.git /tmp/agent-research-skills
/tmp/claude-research-skills/install.sh /tmp/agent-research-skills/install.sh
rm -rf /tmp/claude-research-skills rm -rf /tmp/agent-research-skills
``` ```
This installs slash commands, checks Python dependencies, and verifies script syntax. This installs slash commands, checks Python dependencies, and verifies script syntax.
+3 -3
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -euo pipefail set -euo pipefail
# claude-research-skills installer # agent-research-skills installer
# Installs slash commands, checks dependencies, and verifies skill installation. # Installs slash commands, checks dependencies, and verifies skill installation.
# #
# Usage: # Usage:
@@ -15,7 +15,7 @@ COMMANDS_DIR="$HOME/.claude/commands"
MODE="${1:-full}" MODE="${1:-full}"
echo "=== claude-research-skills installer ===" echo "=== agent-research-skills installer ==="
echo "" echo ""
# --- 1. Verify skills are installed --- # --- 1. Verify skills are installed ---
@@ -51,7 +51,7 @@ fi
if [ "$SKILLS_MISSING" -gt 0 ]; then if [ "$SKILLS_MISSING" -gt 0 ]; then
echo "" echo ""
echo " $SKILLS_FOUND/30 skills installed, $SKILLS_MISSING missing." echo " $SKILLS_FOUND/30 skills installed, $SKILLS_MISSING missing."
echo " Install with: npx skills add lingzhi227/claude-research-skills -g -a claude-code" echo " Install with: npx skills add lingzhi227/agent-research-skills -g -a claude-code"
echo "" echo ""
else else
echo " [+] All 30 skills installed." echo " [+] All 30 skills installed."