CtrlK
BlogDocsLog inGet started
Tessl Logo

revenue-team

Manage sales pipeline, forecast revenue, track deals with HubSpot and Notion

Install with Tessl CLI

npx tessl i github:oyi77/1ai-skills --skill revenue-team
What are skills?

Overall
score

18%

Does it follow best practices?

Validation for skill structure

Validation failed for this skill
This skill has errors that need to be fixed before it can move to Implementation and Activation review.
SKILL.md
Review
Evals

Revenue Team

Manage sales pipeline, forecast revenue, track deals with HubSpot and Notion integration.

Required Tools

{
  "mcpServers": {
    "hubspot": { "command": "npx", "args": ["-y", "@sheffieldp/mcp-hubspot"], "env": { "HUBSPOT_API_KEY": "${HUBSPOT_API_KEY}" } },
    "notion": { "command": "npx", "args": ["-y", "@makenotion/mcp-server"], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } },
    "slack": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-slack"], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}" } }
  }
}

Pseudo Code

Pipeline Update

// 1. Get deals
const deals = await hubspot.getDeals({ stage: "qualified" });

// 2. Calculate forecast
const forecast = deals.reduce((sum, d) => sum + d.amount, 0);

// 3. Update Notion
await notion.update("Revenue Forecast", { forecast });

Stage Progression

// Move deal to next stage
await hubspot.updateDeal(dealId, { dealstage: "contract_sent" });
await slack.notify("#sales", `Deal moved to contract: ${dealName}`);

Skill v2.0 - Revenue Team

Repository
github.com/oyi77/1ai-skills
Last updated
Created

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.