AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Adclaw Host Ai Accounting

skill-citedy-skills-adclaw-host-ai-accounting · by citedy

Use for AdClaw Host AI quota accounting, hosted key provisioning, limit UX, and secret redaction reviews.

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

Install

$ agentstack add skill-citedy-skills-adclaw-host-ai-accounting

✓ 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-citedy-skills-adclaw-host-ai-accounting)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo 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 Adclaw Host Ai Accounting? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

AdClaw Host AI Accounting

Purpose

Use this skill for AdClaw Host zero-setup onboarding work where paid Starter/Pro/Business customers receive included Host AI messages and a hosted Citedy Agent key without entering secrets manually.

The skill focuses on operational truth: quota math, D1 accounting, entitlement gates, prompt/error UX, Citedy key handoff, and redaction. It does not replace cloudflare, workers-best-practices, stripe-best-practices, architecture-patterns, or security-review; use those together when touching their domains.

Trigger Examples

  • "implement Host AI quota"
  • "audit Workers AI cost model"
  • "review included LLM messages per plan"
  • "design Citedy auto key provisioning"
  • "what happens on the 501st Starter message"
  • "check prompt/accounting docs for AdClaw Host AI"
  • "make sure LLM/Citedy keys are not leaked"

Required Reading

Before changing code or docs, read the canonical project doc:

/root/adclaw/CF/docs/goal/host-preactivated-llm-citedy-keys.md

When implementation touches Citedy key creation, also read:

/root/saas-blog/docs/sub-project/adclaw/citedy-api-key-handoff.md

When implementation touches AdClaw provider/env storage, inspect current code instead of assuming schema:

/root/AdClaw/src/adclaw/providers/store.py
/root/AdClaw/src/adclaw/envs/store.py
/root/AdClaw/src/adclaw/app/routers/citedy.py

Workflow

  1. Establish current facts from repo docs and code.
  2. Identify which boundary is being changed: Host Worker, D1 accounting,

AdClaw sandbox bootstrap, Citedy key service, UI copy, or docs only.

  1. Apply the accounting checks in references/accounting-model.md.
  2. Apply the secret and abuse checks in references/security-redaction.md.
  3. Apply the UX/prompt checks in references/quota-ux.md.
  4. If reviewing implementation, use references/review-checklist.md as the

findings checklist.

  1. Validate with the smallest safe test. Do not run saas-blog Node workloads

on this VPS unless the current user explicitly overrides the host ban.

Core Decisions

  • Workers AI access stays in the Host Worker through env.AI.
  • The sandbox receives only a customer-scoped synthetic Host AI token.
  • Never put Cloudflare account API tokens or Workers AI account credentials in

a sandbox, backup, browser response, log, Sentry event, or analytics event.

  • Citedy hosted auto-provisioning should create a securely random key for the

deterministic adclaw-host agent record.

  • Manual Get Citedy key remains fallback and rotation UX, not the normal paid

hosted onboarding path.

  • Host AI remains the managed default/fallback provider even when a customer

adds their own provider key.

  • Enforce both message limits and cost caps.
  • Block before calling Workers AI when a quota or entitlement gate fails.
  • R2 backups are secret-bearing if they contain /workspace/working.secret.

Default Planning Quotas

Use these only as the current planning baseline. Re-check Cloudflare pricing before changing production limits or customer-facing promises.

Starter:  300 included Host AI messages, cost cap $1.00/month
Pro:    1,500 included Host AI messages, cost cap $4.50/month
Business: 5,000 included Host AI messages, cost cap $15.00/month

Initial model:

@cf/google/gemma-4-26b-a4b-it

Pricing baseline:

$0.10 per 1M input tokens
$0.30 per 1M output tokens

Formula:

cost_usd = input_tokens / 1_000_000 * 0.10
         + output_tokens / 1_000_000 * 0.30

Output Standard

When producing an audit or implementation plan, include:

  • exact files or APIs affected;
  • current fact source;
  • quota/accounting impact;
  • secret boundary impact;
  • entitlement/refund/dispute behavior;
  • customer-facing limit/error behavior;
  • tests or smoke evidence required.

Avoid vague conclusions like "safe" without stating which boundary was checked.

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.