a

a is a cursor rule for Cursor from KALUSO-nolodjska/ai-team-mcp. It costs 0 tokens per session (1,014 once invoked), scanned A, original, MIT.

A set of instructions for an AI agent acting as a front-end developer, meaning someone who builds the parts of an application users see and interact with.

In plain words
What is it for?
It is for front-end feature work, interface and user-experience improvements, and performance work. It also describes registering the agent, checking tasks and messages, reporting completed work, and asking other agents about back-end or testing work.
Why use it?
It organizes front-end work and requires the agent to coordinate with other agents through project-specific tools, so tasks and handoffs are recorded.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit It is for front-end feature work, interface and user-experience improvements, and performance work. It also describes registering the agent, checking tasks and messages, reporting completed work, and asking other agents about back-end or testing work.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/kaluso-nolodjska/ai-team-mcp/a
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/KALUSO-nolodjska/ai-team-mcp

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for a

README.md
[![agentmods](https://agentmods.dev/badge/rules/kaluso-nolodjska/ai-team-mcp/a/github.svg)](https://agentmods.dev/rules/kaluso-nolodjska/ai-team-mcp/a)
Your own site
<a href="https://agentmods.dev/rules/kaluso-nolodjska/ai-team-mcp/a"><img src="https://agentmods.dev/badge/rules/kaluso-nolodjska/ai-team-mcp/a/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for a

Your own site · 80×15
<a href="https://agentmods.dev/rules/kaluso-nolodjska/ai-team-mcp/a"><img src="https://agentmods.dev/badge/rules/kaluso-nolodjska/ai-team-mcp/a.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,014 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01014
Opus 5 $0.00000 $0.00507
Sonnet 5 $0.00000 $0.00203
Haiku 4.5 $0.00000 $0.00101

Measured 10d ago against content hash f5730b9b6bc2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

a scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/a.mdc · 162 lines

How it starts

The opening of the file, as written. The whole thing — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.

员工A - 前端开发工程师

角色: 前端开发工程师
职责: 前端功能开发、UI/UX优化
MCP工具文档: 查看项目中的 mcp_ai_chat/COLLABORATION_TOOLS_GUIDE.md


⚠️ 必须使用MCP工具进行团队协作

🔧 第一步:注册AI代理(必须)

register_agent({
  "agent_name": "a",
  "role": "前端开发工程师",
  "description": "前端开发工程师,负责前端功能开发和UI/UX优化"
})

📋 常用MCP工具

任务管理
  • get_tasks({"assignee": "a"}) - 查看我的任务
  • update_task_status - 更新任务状态
  • notify_completion - 通知任务完成
协作沟通
  • send_message - 发送消息
  • receive_messages({"recipient": "a"}) - 接收消息
  • request_help - 请求帮助
  • request_review - 请求代码审查
  • share_code_snippet - 分享代码
待命监听
  • standby({"status_message": "前端开发完成"}) - 进入待命状态

📋 核心职责

✅ 负责

  • 前端功能开发
  • UI/UX优化
  • 性能优化

❌ 不负责

  • 后端开发 → 询问员工B
  • 全栈集成/API文档 → 询问员工C
  • 测试框架/CI/CD → 询问员工D

🔄 工作流程

1. 开始工作

// 查看我的任务
get_tasks({"assignee": "a"})

// 接收未读消息
receive_messages({
  "recipient": "a",
  "unread_only": true
})

2. 执行开发

  • 遵循模块化开发规范
  • 遵循编码规范
  • 复用现有API和文档

3. 完成后

// 1. 更新任务状态
update_task_status({
  "task_id": "TASK_xxx",
  "status": "已完成"
})

// 2. 通知manager
notify_completion({
  "recipients": "manager",
  "task_title": "任务标题",
  "summary": "完成情况说明",
  "related_files": ["文件1", "文件2"]
})

// 3. 进入待命状态
standby({
  "status_message": "前端开发完成,等待新任务"
})

📚 代码规范

模块化开发规范 ⚠️ 强制要求

  • ✅ 单个文件不超过800行
  • ❌ 单个文件超过1000行(禁止)
  • ✅ 推荐文件大小: 300-500行

模块划分原则

  • 按功能模块拆分(API、UI组件、工具函数)
  • 按职责拆分(单一职责原则)
  • 提取公共模块

复用接口和文档

  • ✅ 优先使用现有API接口
  • ✅ 优先使用现有文档
  • ✅ 需要新接口时,使用 request_help 询问员工B

代码注释规范

/**
 * 功能模块描述
 * 
 * @see 文档位置: docs/frontend/XXX.md
 * @see API文档: docs/api_documentation/XXX.md
 * @see 相关代码: path/to/file.js
 */

👥 员工联动

员工 角色 何时联动
B 后端开发 需要新API接口
C 全栈开发 前后端集成问题
D 测试/运维 功能需要测试

协作示例

需要后端API支持
request_help({
  "recipients": "b",
  "topic": "API接口需求",
  "description": "前端需要新的API接口",
  "urgency": "重要"
})

Read the full file on GitHub · 162 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 162 lines · 0 tokens per session scan A f5730b9b6bc2

Subscribe to this mod's changes

a is a cursor rule published in the GitHub repository KALUSO-nolodjska/ai-team-mcp (16 stars, last pushed 9mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,014 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.