AgentStack
SKILL verified MIT Self-run

Ccg Namespace

skill-tae2089-code-context-graph-ccg-namespace · by tae2089

code-context-graph — namespace file management for MSA / multi-project isolation.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-tae2089-code-context-graph-ccg-namespace

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-tae2089-code-context-graph-ccg-namespace)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ccg Namespace? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ccg-namespace — Namespace File Management

Manage uploaded source or documentation files in isolated namespaces. Use this for MSA environments or workflows spanning multiple repositories.

Terminology

| Term | Status | Meaning | | ---- | ------ | ------- | | namespace | Canonical | Isolation key for graph data, uploaded files, RAG indexes, and postprocess policy | | --namespace-root | Canonical | Root directory that stores namespace file trees |

For single-project local work, you usually do not need a named namespace. Use ccg build . and the default namespace.

Folder Structure

{namespace-root}/
├── payment-svc/
│   ├── handler.go
│   └── service.go
├── user-svc/
│   └── auth.go
└── gateway/
    └── router.go

Configured via ccg serve --namespace-root for local stdio MCP, or ccg-server --namespace-root for self-hosted HTTP MCP (default: namespaces/).

Core Patterns

Upload, Then Build And Search

upload_file(namespace: "payment-svc", file_path: "handler.go", content: "")
→ build_or_update_graph(namespace: "payment-svc", path: "{namespace-root}/payment-svc")
→ search(namespace: "payment-svc", query: "payment")

Wiki And RAG Per Namespace

upload_file(namespace: "my-service", file_path: "docs/handler.go.md", content: "")
→ build_rag_index(namespace: "my-service")
→ search_docs(namespace: "my-service", query: "handler")
→ get_doc_content(namespace: "my-service", file_path: "docs/handler.go.md")

Bulk Upload

upload_files(files: '[{"namespace":"payment-svc","file_path":"a.go","content":""},...]')

files is a JSON string containing an array. Prefer bulk upload over many single-file calls.

MCP Tools

| Tool | Use | | ---- | --- | | upload_file | Upload one file to a namespace (base64) | | upload_files | Upload many files to namespaces (JSON array) | | list_namespaces | List all namespaces | | list_files | List files in a namespace | | delete_file | Delete one file from a namespace | | delete_namespace | Delete a namespace and its files |

Security

  • Path traversal (../) is blocked
  • Namespace names must be single safe path segments
  • Symlink traversal is rejected before file writes
  • File size and bulk request size are capped

Operational Tips

  • Use one namespace per service or repository when graph/search state should stay isolated.
  • Keep reference-only services in separate namespaces and rebuild them rarely.
  • Delete retired service state with delete_namespace to remove graph, RAG, and search noise.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.