Backend Fixer Agent

# 后端修复助手 - 后端开发人员通过Clawdbot分析问题并生成修复方案

7 stars

Best use case

Backend Fixer Agent is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

# 后端修复助手 - 后端开发人员通过Clawdbot分析问题并生成修复方案

Teams using Backend Fixer Agent should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/devbridge-backend/SKILL.md --create-dirs "https://raw.githubusercontent.com/Demerzels-lab/elsamultiskillagent/main/public/skills/albertnjcn/devbridge-backend/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/devbridge-backend/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How Backend Fixer Agent Compares

Feature / AgentBackend Fixer AgentStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

# 后端修复助手 - 后端开发人员通过Clawdbot分析问题并生成修复方案

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Backend Fixer Agent
# 后端修复助手 - 后端开发人员通过Clawdbot分析问题并生成修复方案

name: "后端修复助手"
version: "1.0.0"

# Clawdbot配置
clawdbot:
  gateway: "https://gateway.clawd.bot"
  sessionKey: "agent:backend:dev"
  timeout: 60000
  
  # 通信配置(使用占位符,不硬编码本地路径)
  agents:
    frontend:
      sessionKey: "agent:frontend:dev"
      
    admin:
      sessionKey: "agent:admin:dev"

# 状态存储(使用环境变量,不硬编码本地路径)
state:
  # 环境变量优先,否则使用clawdhub默认路径
  file: "${CLAWDBOT_STATE_DIR:-/data/clawdbot}/PROBLEMS_STATE.json"
  # 修复尝试记录(可选)
  cache:
    enabled: true
    ttl: 3600  # 1小时

# 命令触发器
triggers:
  # 修复请求
  - regex: "^/fix\\s+(.+)$"
    handler: "handle_fix_request"
    description: "接收修复请求并分析问题"
  
  - regex: "^/analyze\\s+(.+)$"
    handler: "analyze_problem"
    description: "分析API问题"
  
  - regex: "^/ready\\s+([a-f0-9-]+)$"
    handler: "mark_fix_ready"
    description: "标记修复为就绪"
  
  - regex: "^/complete\\s+([a-f0-9-]+)$"
    handler: "mark_fix_complete"
    description: "标记修复完成"

# 命令列表
commands:
  # 分析命令
  - name: "analyze_problem"
    description: "分析API问题并生成解决方案"
    parameters:
      - name: "problem_id"
        type: "string"
        required: true
        description: "问题ID"
  
  - name: "handle_fix_request"
    description: "处理修复请求"
    parameters:
      - name: "message"
        type: "string"
        required: true
        description: "完整问题信息"

  - name: "mark_fix_ready"
    description: "标记修复为就绪"
    parameters:
      - name: "problem_id"
        type: "string"
        required: true
        description: "问题ID"
      - name: "fix_code"
        type: "string"
        required: true
        description: "修复代码"
      - name: "explanation"
        type: "string"
        required: true
        description: "修复说明"

  - name: "mark_fix_complete"
    description: "标记修复完成"
    parameters:
      - name: "problem_id"
        type: "string"
        required: true
        description: "问题ID"

  # 状态查询命令
  - name: "get_problem_status"
    description: "获取问题状态"
    parameters:
      - name: "problem_id"
        type: "string"
        required: true
        description: "问题ID"

  - name: "list_pending_fixes"
    description: "列出待修复的问题"

# 环境变量(使用占位符或示例值,不包含实际密钥)
environment:
  # AI模型配置(占位符或提示)
  AI_PROVIDER: "openai"
  AI_MODEL: "gpt-4"
  AI_TEMPERATURE: 0.7
  AI_MAX_TOKENS: 2000
  AI_TIMEOUT: 30
  
  # API规范配置
  API_STRICT_MODE: true
  ENFORCE_VALIDATION: true
  AUTO_GENERATE_TESTS: true
  
  # 代码生成配置
  CODE_LANGUAGE: "javascript"
  CODE_FRAMEWORK: "express"
  CODE_COMMENT_STYLE: "detailed"
  
  # 时间格式
  TIMEZONE: "Asia/Shanghai"
  DATETIME_FORMAT: "%Y-%m-%d %H:%M:%S"

# 权限配置
permissions:
  # 可以访问的资源
  allowed_resources:
    - "problem:read"
    - "fix:read"
    - "fix:write"
    - "timeline:read"
  
  # 安全配置
  security:
    validate_fixes: true
    require_approval: true
    max_fix_attempts: 5

Related Skills

backend-patterns

7
from Demerzels-lab/elsamultiskillagent

Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.

codehooks-backend

7
from Demerzels-lab/elsamultiskillagent

Deploy serverless backends for REST APIs, webhooks, data storage, scheduled jobs, queue workers, and autonomous.

senior-backend

7
from Demerzels-lab/elsamultiskillagent

This skill should be used when the user asks to "design REST APIs", "optimize database queries", "implement authentication", "build microservices", "review backend code", "set up GraphQL", "handle database migrations", or "load test APIs". Use for Node.js/Express/Fastify development, PostgreSQL optimization, API security, and backend architecture patterns.

paylock

7
from Demerzels-lab/elsamultiskillagent

Non-custodial SOL escrow for AI agent deals.

agent-reputation

7
from Demerzels-lab/elsamultiskillagent

summary: Cross-platform AI agent reputation checker with trust scoring and PayLock escrow recommendations.

Telecom Agent Skill

7
from Demerzels-lab/elsamultiskillagent

Turn your AI Agent into a Telecom Operator. Bulk calling, ChatOps, and Field Monitoring.

OpenClaw-Finnhub

7
from Demerzels-lab/elsamultiskillagent

OpenClaw skill for real-time stock quote, and financials via Finnhub API.

```markdown

7
from Demerzels-lab/elsamultiskillagent

# OpenClaw-Last.fm

security-operator

7
from Demerzels-lab/elsamultiskillagent

Runtime security guardrails for OpenClaw agents.

operator-humanizer

7
from Demerzels-lab/elsamultiskillagent

Transform AI-generated text into authentic human writing.

kit-email-operator

7
from Demerzels-lab/elsamultiskillagent

**AI-powered email marketing for Kit (ConvertKit)**.

agora

7
from Demerzels-lab/elsamultiskillagent

Trade prediction markets on Agora — the prediction market exclusively for AI agents. Register, browse markets, trade YES/NO, create markets, earn reputation via Brier scores.