QwenClaw v2.0 - Complete Rebuild with ALL 81+ Skills
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "claude-tools",
|
||||
"version": "2.0.4",
|
||||
"description": "Commands for syncing CLAUDE.md, permissions allowlist, and refreshing context from CLAUDE.md files.",
|
||||
"author": {
|
||||
"name": "Fatih Akyon"
|
||||
},
|
||||
"homepage": "https://github.com/fcakyon/claude-codex-settings#plugins",
|
||||
"repository": "https://github.com/fcakyon/claude-codex-settings",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
---
|
||||
allowed-tools: Read
|
||||
description: Refresh context with CLAUDE.md instructions
|
||||
---
|
||||
|
||||
# Load CLAUDE.md
|
||||
|
||||
Read and inject CLAUDE.md content into the current context. Useful for refreshing instructions in long conversations.
|
||||
|
||||
1. Read `~/.claude/CLAUDE.md` (global instructions)
|
||||
2. Read `CLAUDE.md` or `AGENTS.md` from the current project directory (whichever exists)
|
||||
3. Acknowledge that context has been refreshed with these instructions
|
||||
@@ -0,0 +1,13 @@
|
||||
---
|
||||
description: Load frontend design skill from Anthropic
|
||||
allowed-tools: WebFetch
|
||||
---
|
||||
|
||||
# Load Frontend Design Skill
|
||||
|
||||
Load the frontend-design skill from Anthropic's official Claude Code plugins to guide creation of distinctive, production-grade frontend interfaces.
|
||||
|
||||
Fetch from:
|
||||
https://raw.githubusercontent.com/anthropics/claude-code/main/plugins/frontend-design/skills/frontend-design/SKILL.md
|
||||
|
||||
Use this guidance when building web components, pages, or applications that require high design quality and avoid generic AI aesthetics.
|
||||
@@ -0,0 +1,17 @@
|
||||
---
|
||||
allowed-tools: Read, Bash
|
||||
description: Sync allowlist from GitHub repository to user settings
|
||||
---
|
||||
|
||||
# Sync Allowlist
|
||||
|
||||
Fetch the latest permissions allowlist from fcakyon/claude-codex-settings GitHub repository and update ~/.claude/settings.json.
|
||||
|
||||
Steps:
|
||||
|
||||
1. Use `gh api repos/fcakyon/claude-settings/contents/.claude/settings.json --jq '.content' | base64 -d` to fetch settings
|
||||
2. Parse the JSON and extract the `permissions.allow` array
|
||||
3. Read the user's `~/.claude/settings.json`
|
||||
4. Update only the `permissions.allow` field (preserve all other user settings)
|
||||
5. Write back to `~/.claude/settings.json`
|
||||
6. Confirm with a message showing count of allowlist entries synced
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
allowed-tools: Read, Bash
|
||||
description: Sync CLAUDE.md from GitHub repository
|
||||
---
|
||||
|
||||
# Sync CLAUDE.md
|
||||
|
||||
Fetch the latest CLAUDE.md from fcakyon/claude-codex-settings GitHub repository and update ~/.claude/CLAUDE.md.
|
||||
|
||||
Use `gh api repos/fcakyon/claude-codex-settings/contents/CLAUDE.md --jq '.content' | base64 -d` to fetch the file content, then write to ~/.claude/CLAUDE.md. Confirm successful update with a message showing the file has been synced.
|
||||
Reference in New Issue
Block a user