# Send Ccsinfo to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ccsinfo",
    "name": "Ccsinfo",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/myakove/ccsinfo",
    "canonicalUrl": "https://clawhub.ai/myakove/ccsinfo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ccsinfo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ccsinfo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/cli-commands.md",
      "scripts/ccs.sh",
      "scripts/install.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ccsinfo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:25:17.447Z",
      "expiresAt": "2026-05-06T03:25:17.447Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ccsinfo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ccsinfo",
        "contentDisposition": "attachment; filename=\"ccsinfo-0.1.6.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ccsinfo"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ccsinfo"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ccsinfo",
    "downloadUrl": "https://openagent3.xyz/downloads/ccsinfo",
    "agentUrl": "https://openagent3.xyz/skills/ccsinfo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ccsinfo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ccsinfo/agent.md"
  }
}
```
## Documentation

### ccsinfo - Claude Code Session Info

Access and analyze Claude Code session data from a remote ccsinfo server running on the user's machine.

Server Repository: https://github.com/myk-org/ccsinfo

### 1. Server Setup (on the machine with Claude Code data)

The ccsinfo server must be running on the machine that has Claude Code session data.

Install and run the server:

# Install ccsinfo
uv tool install git+https://github.com/myk-org/ccsinfo.git

# Start the server (accessible on LAN)
ccsinfo serve --host 0.0.0.0 --port 9999

The server reads Claude Code session data from ~/.claude/projects/ and exposes it via REST API.

For full server documentation, see: https://github.com/myk-org/ccsinfo

### 2. Client Setup (where this skill runs)

The ccsinfo CLI tool must be installed. Check if installed:

which ccsinfo

If not installed, run the installation script:

bash scripts/install.sh

### 3. Configuration

Set the CCSINFO_SERVER_URL environment variable to point to your server:

export CCSINFO_SERVER_URL=http://192.168.1.100:9999

Add this to your shell profile (.bashrc, .zshrc, etc.) to persist across sessions.

### Quick Start

All commands automatically connect to the remote server via $CCSINFO_SERVER_URL.

### List recent sessions

ccsinfo sessions list

### Show session details (supports partial ID matching)

ccsinfo sessions show <session-id>

### View conversation messages

ccsinfo sessions messages <session-id>

### Search sessions by content

ccsinfo search sessions "search term"

### View global statistics

ccsinfo stats global

### Inspect a specific session

List sessions to find the ID:
ccsinfo sessions list



Show session details:
ccsinfo sessions show <id>



View messages:
ccsinfo sessions messages <id>



Check tool calls:
ccsinfo sessions tools <id>

### Find sessions by content

# Search across all sessions
ccsinfo search sessions "refactor"

# Search message content
ccsinfo search messages "fix bug"

# Search prompt history
ccsinfo search history "implement feature"

### Track tasks

# Show all pending tasks
ccsinfo tasks pending

# List tasks for a session
ccsinfo tasks list -s <session-id>

# Show specific task details
ccsinfo tasks show <task-id> -s <session-id>

### View statistics and trends

# Overall usage stats
ccsinfo stats global

# Daily activity breakdown
ccsinfo stats daily

# Analyze trends over time
ccsinfo stats trends

### Work with projects

# List all projects
ccsinfo projects list

# Show project details
ccsinfo projects show <project-id>

# Project statistics
ccsinfo projects stats <project-id>

### Output Formats

Most commands support --json for machine-readable output:

ccsinfo sessions list --json
ccsinfo stats global --json

This is useful for parsing results programmatically or filtering with jq.

### Session ID Matching

Session IDs support partial matching - use the first few characters:

ccsinfo sessions show a1b2c3  # matches a1b2c3d4-e5f6-7890-abcd-ef1234567890

### Reference

For complete command reference, see cli-commands.md.

### Check server connectivity

# Verify server URL is set
echo $CCSINFO_SERVER_URL

# Test connection (list sessions)
ccsinfo sessions list

### Verify installation

# Check if ccsinfo is installed
which ccsinfo

# Check version
ccsinfo --version

### Reinstall if needed

bash scripts/install.sh
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: myakove
- Version: 0.1.6
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T03:25:17.447Z
- Expires at: 2026-05-06T03:25:17.447Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ccsinfo)
- [Send to Agent page](https://openagent3.xyz/skills/ccsinfo/agent)
- [JSON manifest](https://openagent3.xyz/skills/ccsinfo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ccsinfo/agent.md)
- [Download page](https://openagent3.xyz/downloads/ccsinfo)