Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

code-with-claude代码 with Claude

Agent Skill

code-with-claude 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,990

周安装

163

GitHub Stars

公开资料未说明

下载量

1,291
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:code-with-claude(代码 with Claude)
来源仓库:https://github.com/awalesagar/code-with-claude
安装命令:
openclaw skills install code-with-claude
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install code-with-claude

简介

全面的 Claude Code CLI 参考指南,涵盖交互模式和插件生态。

  • 适合深入掌握高级功能和自定义配置技巧的开发者。
  • 详细说明环境变量、挂钩机制和通道通信原理。
  • 部分高级功能可能需要特定版本或更高权限支持。
  • 建议结合官方文档和社区案例学习最佳实践。code-with-claude 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
code-with-claude
description
>-

Code with Claude

Use this skill when the user asks about Claude Code CLI features, configuration, workflows, or best practices.

Claude Code Feature Map

FeatureWhat It DoesReference
CLI flagsLaunch-time options for sessions, models, permissions, prompts./references/cli-reference.md
CommandsIn-session / commands for model switching, permissions, context, workflows./references/commands.md
Interactive modeKeyboard shortcuts, Vim mode, multiline input, voice, task list./references/interactive-mode.md
HooksShell commands, HTTP endpoints, or LLM prompts at lifecycle events./references/hooks.md
PluginsExtend Claude Code with skills, agents, hooks, MCP/LSP servers./references/plugins.md
ChannelsMCP servers that push external events into a session./references/channels.md
CheckpointingAutomatic file edit tracking with rewind and summarize./references/checkpointing.md
ToolsBuilt-in tools: Bash, Edit, Read, Write, Agent, WebFetch, etc../references/tools.md
Environment variablesControl behavior via env vars or settings.json./references/env-vars.md

Quick Reference: Essential CLI Flags

FlagPurposeExample
--modelSet model (alias or full name)claude --model opus
--continue, -cResume most recent conversationclaude -c
--resume, -rResume by session ID or nameclaude -r "auth-refactor"
--print, -pNon-interactive print mode (SDK)claude -p "query"
--permission-modeStart in a specific permission modeclaude --permission-mode plan
--worktree, -wIsolated git worktree sessionclaude -w feature-auth
--bareMinimal mode, skip auto-discoveryclaude --bare -p "query"
--append-system-promptAdd to default system promptclaude --append-system-prompt "Use TS"
--effortSet effort level for sessionclaude --effort high

Quick Reference: Essential Commands

CommandPurpose
/model [model]Switch model mid-session
/compact [instructions]Compact conversation, free context
/clearClear conversation history
/rewindRewind to a checkpoint (Esc+Esc)
/permissionsManage tool allow/deny rules
/plan [description]Enter plan mode
/batch <instruction>Parallel large-scale changes
/hooksView hook configurations
/memoryEdit CLAUDE.md memory files
/diffInteractive diff viewer
/costShow token usage statistics
/effort [level]Set effort (low/medium/high/max)

Quick Reference: Key Shortcuts

ShortcutAction
Ctrl+CCancel current generation
Esc+EscRewind / checkpoint menu
Shift+TabCycle permission modes
Ctrl+OToggle transcript viewer
Ctrl+BBackground running tasks
Ctrl+TToggle task list
Alt+PSwitch model
Alt+TToggle extended thinking
!commandRun bash directly in session
@pathFile path autocomplete

Quick Reference: Permission Modes

ModeBehavior
defaultAsk for each tool use
acceptEditsAuto-approve file edits, ask for bash
planRead-only exploration, no writes
autoAI classifier approves safe operations
bypassPermissionsSkip all permission prompts

Cycle modes with Shift+Tab. Start in a specific mode: claude --permission-mode plan.

Quick Reference: Core Tools

ToolDescriptionPermission
BashExecute shell commandsYes
ReadRead file contentsNo
EditTargeted file editsYes
WriteCreate or overwrite filesYes
AgentSpawn subagent with own contextNo
GlobFind files by patternNo
GrepSearch file contentsNo
WebFetchFetch URL contentYes
WebSearchWeb searchYes
MonitorBackground watch + reactYes

Gotchas

  • Env vars don't persist across Bash tool commands. Use CLAUDE_ENV_FILE or a SessionStart hook.
  • Checkpoints don't track bash changes — only direct file edits via Edit/Write tools are tracked.
  • `applyTo: ""` burns context** — always-on instructions load on every interaction. Use specific globs.
  • macOS Alt shortcuts require Option-as-Meta in your terminal (iTerm2: Profiles → Keys → "Esc+").
  • --bare disables everything — hooks, skills, plugins, MCP, auto-memory, CLAUDE.md. Use for fast scripted calls.
  • Hook if patterns use tool permission syntax: Bash(rm *) matches bash commands starting with rm.
  • Plugin agents can't use hooks, mcpServers, or permissionMode frontmatter for security reasons.

When to Load References

Load the appropriate reference when the user needs detailed information:

  • CLI flags, system prompt customization, launch options → Read ./references/cli-reference.md
  • In-session commands, slash commands, skills list → Read ./references/commands.md
  • Keyboard shortcuts, Vim mode, multiline, voice, task list → Read ./references/interactive-mode.md
  • Hooks lifecycle, events, matchers, configuration → Read ./references/hooks.md
  • Plugins structure, manifest, MCP/LSP, distribution → Read ./references/plugins.md
  • Channels, webhook receivers, two-way chat bridges → Read ./references/channels.md
  • Checkpointing, rewind, restore, summarize → Read ./references/checkpointing.md
  • Built-in tools, Bash behavior, LSP, Monitor, PowerShell → Read ./references/tools.md
  • Environment variables, timeouts, model config, proxy → Read ./references/env-vars.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.03%
按下载量换算1,266

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills