Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Crm Dengineproblem Agents Monorepo

ASecurity

Работа с CRM, лидами и WhatsApp диалогами

76 stars
0 votes
0 copies
1 views
Added 2/8/2026
businessbash

Security Analysis

A100/100

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add majiayu000/claude-skill-registry --skill crm-dengineproblem-agents-monorepo --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Crm Dengineproblem Agents Monorepo?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Crm Dengineproblem Agents Monorepo
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/majiayu000-crm-dengineproblem-agents-monorepo/badge)](https://www.skillsdirectory.com/skills/majiayu000-crm-dengineproblem-agents-monorepo)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: crm
description: Работа с CRM, лидами и WhatsApp диалогами
---

# CRM Skill

Этот skill позволяет работать с лидами, диалогами и CRM системой.

## Базовый формат вызова

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/{toolName} \
  -H "Content-Type: application/json" \
  -d '{...параметры...}'
```

---

## Leads (Лиды)

### getLeads
Получить список лидов.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getLeads \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123", "status": "new", "limit": 50}'
```

Параметры:
- `adAccountId` - ID рекламного аккаунта
- `status` - Статус: new, qualified, rejected, converted
- `period` - Период: last_1d, last_7d, last_30d
- `limit` - Лимит записей

### getLeadDetails
Детали лида.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getLeadDetails \
  -H "Content-Type: application/json" \
  -d '{"leadId": "123"}'
```

### updateLeadStage
Изменить стадию лида.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/updateLeadStage \
  -H "Content-Type: application/json" \
  -d '{"leadId": "123", "stage": "qualified", "reason": "Confirmed interest"}'
```

---

## Воронка продаж

### getFunnelStats
Статистика воронки.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getFunnelStats \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123", "period": "last_30d"}'
```

### getSalesQuality
Качество продаж.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getSalesQuality \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123", "period": "last_30d"}'
```

---

## AmoCRM Integration

### getAmoCRMStatus
Статус интеграции с AmoCRM.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getAmoCRMStatus \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123"}'
```

### getAmoCRMPipelines
Воронки AmoCRM.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getAmoCRMPipelines \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123"}'
```

### syncAmoCRMLeads
Синхронизация лидов с AmoCRM.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/syncAmoCRMLeads \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123"}'
```

### getAmoCRMKeyStageStats
Статистика по ключевым этапам.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getAmoCRMKeyStageStats \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123", "period": "last_30d"}'
```

### getAmoCRMQualificationStats
Статистика квалификации.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getAmoCRMQualificationStats \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123", "period": "last_30d"}'
```

### getAmoCRMLeadHistory
История лида в AmoCRM.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getAmoCRMLeadHistory \
  -H "Content-Type: application/json" \
  -d '{"leadId": "123"}'
```

---

## WhatsApp Диалоги

### getDialogs
Получить диалоги.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getDialogs \
  -H "Content-Type: application/json" \
  -d '{"adAccountId": "act_123", "status": "active", "limit": 20}'
```

### getDialogMessages
Сообщения диалога.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/getDialogMessages \
  -H "Content-Type: application/json" \
  -d '{"dialogId": "123", "limit": 50}'
```

### analyzeDialog
AI-анализ диалога.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/analyzeDialog \
  -H "Content-Type: application/json" \
  -d '{"dialogId": "123"}'
```

### searchDialogSummaries
Поиск по саммари диалогов.

```bash
curl -s -X POST http://agent-brain:7080/brain/tools/searchDialogSummaries \
  -H "Content-Type: application/json" \
  -d '{"query": "интересуется ценой", "adAccountId": "act_123"}'
```

---

## Примеры использования

### Анализ качества лидов
1. Получи лидов: `getLeads`
2. Получи статистику воронки: `getFunnelStats`
3. Сравни с предыдущим периодом

### Анализ диалогов
1. Получи диалоги: `getDialogs`
2. Проанализируй важные: `analyzeDialog`
3. Найди паттерны в саммари: `searchDialogSummaries`

Attribution

majiayu000majiayu000
View sourceMore from majiayu000 →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Solution Architect

Designs system architecture, component specifications, and technical integration strategy. Use when: designing solutions, system architecture, technology stack, or integration approaches.

192 votes

Akorchak:Venture Assessment

Generate a comprehensive VC investment assessment report for a company

72 votes

Stock Analysis

Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management (create, add, remove assets), crypto analysis (Top 20 by market cap), and periodic performance reports (daily/weekly/monthly/quarterly/yearly). 8 analysis dimensions for stocks, 3 for crypto. Use for stock analysis, portfolio tracking, earnings reactions, or crypto monitoring.

6511 votes

Just Fucking Cancel

Find and cancel unwanted subscriptions by analyzing bank transactions. Detects recurring charges, calculates annual waste, and helps you cancel with direct URLs and browser automation. Use when: 'cancel subscriptions', 'audit subscriptions', 'find recurring charges', 'what am I paying for', 'save money', 'subscription cleanup', 'stop wasting money'. Supports CSV import (Apple Card, Chase, Amex, Citi, Bank of America, Capital One, Mint, Copilot) OR Plaid API for automatic transaction pull. Out...

6511 votes

Telegram Compose

Compose rich, readable Telegram messages using HTML formatting via direct Telegram API. Use when: (1) Sending any Telegram message beyond a simple one-line reply, (2) Creating structured messages with sections, lists, or status updates, (3) Need formatting unavailable via Clawdbot's Markdown conversion (underline, spoilers, expandable blockquotes, user mentions by ID), (4) Sending alerts, reports, summaries, or notifications to Telegram, (5) Want professional, scannable message formatting wit...

6511 votes
View all in business →