feat: Deal Desk skill (CRM-in-chat) — first Claw Mart product (SOL-16)#14
Open
VisionaireLabs wants to merge 1 commit into
Open
feat: Deal Desk skill (CRM-in-chat) — first Claw Mart product (SOL-16)#14VisionaireLabs wants to merge 1 commit into
VisionaireLabs wants to merge 1 commit into
Conversation
Deal Desk is the first Tier-1 Claw Mart product (SOL-16). A deterministic JSON-in/JSON-out sales CRM run from chat: deal stages, interaction logs, ranked daily priorities, pipeline review, and weighted revenue forecast. - clawhub/deal-desk/: SKILL.md, entry.py (pure stdlib, no network/creds/writes), README, LICENSE (MIT-0). - lib/skills.ts: catalog record at status "alpha" (queued for audit -> test gate). Self-audited against skill-auditor checks (READY on machine-checkable items). entry.py covered end-to-end: every action, error paths, deterministic ids. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Co-authored-by: multica-agent <github@multica.ai>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds Deal Desk, a CRM that lives in chat — the first Tier-1 Claw Mart product from the SOL-15 research.
A deterministic JSON-in/JSON-out sales pipeline engine:
add_deal,update_deal,move_stage,log_interaction,set_next_action,list_deals,daily_priorities,pipeline_review,forecast.Design
clawhub/deal-desk/entry.py— pure stdlib Python 3. No network, no credentials, no file writes. The caller owns persistence: every response echoes the full updatedstateand passes it back next turn.clawhub/deal-desk/SKILL.md— frontmatter (network/credentials/writes allfalse, explicitallowed-tools, negative triggers, limits) + action reference + output contract.README.md,LICENSE(MIT-0).lib/skills.ts— catalog record atstatus: "alpha",provenance: "first-party". No live Claw Mart URL or price claimed until the skill clears the audit → test gate and is actually uploaded.Verification
entry.pyexercised end-to-end (every action, state chaining, deterministic ids, all error paths: bad id / bad stage / unknown action / invalid JSON).skill-auditorchecks — all machine-checkable items pass (structure, slug, frontmatter, runtime metadata, secrets, license, instructions quality, description ≤200 chars with trigger).Gate
Authoring only. Next: hand to auditor, then tester, before it lists — same gate as every skill.
🤖 Generated with Claude Code