Skip to content

Latest commit

 

History

History
898 lines (696 loc) · 17.8 KB

File metadata and controls

898 lines (696 loc) · 17.8 KB

AIOX 编码标准

🌐 EN | PT | ZH


⚠️ 已弃用: 此文件仅为向后兼容性而保留。

官方版本: docs/framework/coding-standards.md

此文件将在 Q2 2026 后在 docs/framework/ 完全合并后被移除。


AIOX 编码标准

版本: 1.1 最后更新: 2025-12-14 状态: 已弃用 - 请查看 docs/framework/coding-standards.md 迁移通知: 此文档将在 Q2 2026 迁移到 SynkraAI/aiox-core 存储库 (见决策 005)


📋 目录


概述

本文档定义了 AIOX 框架开发的官方编码标准。所有代码贡献必须遵守这些标准以确保一致性、可维护性和质量。

应用:

  • ESLint (自动)
  • Prettier (自动)
  • CodeRabbit 审查 (自动)
  • 人工审查 (手动)

JavaScript/TypeScript 标准

语言版本

// 目标: ES2022 (Node.js 18+)
// TypeScript: 5.x

// ✅ 好的: 现代语法
const data = await fetchData();
const { id, name } = data;

// ❌ 不好: 过时语法
fetchData().then(function (data) {
  var id = data.id;
  var name = data.name;
});

TypeScript 配置

// tsconfig.json
{
  "compilerOptions": {
    "target": "ES2022",
    "module": "commonjs",
    "lib": ["ES2022"],
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "resolveJsonModule": true,
    "declaration": true,
    "outDir": "./dist",
    "rootDir": "./src"
  }
}

代码风格

缩进和格式化

// ✅ 好的: 2 空格缩进
function processAgent(agent) {
  if (agent.enabled) {
    return loadAgent(agent);
  }
  return null;
}

// ❌ 不好: 4 空格或制表符
function processAgent(agent) {
  if (agent.enabled) {
    return loadAgent(agent);
  }
  return null;
}

Prettier 配置:

{
  "printWidth": 100,
  "tabWidth": 2,
  "useTabs": false,
  "semi": true,
  "singleQuote": true,
  "trailingComma": "es5",
  "bracketSpacing": true,
  "arrowParens": "always"
}

行长度

// ✅ 好的: 最多 100 个字符
const result = await executeTask(taskName, taskArgs, { timeout: 5000, retry: 3 });

// ❌ 不好: 超过 100 个字符
const result = await executeTask(taskName, taskArgs, {
  timeout: 5000,
  retry: 3,
  failureCallback: onFailure,
});

引号

// ✅ 好的: 字符串使用单引号
const agentName = 'developer';
const message = `Agent ${agentName} activated`;

// ❌ 不好: 双引号 (JSON 除外)
const agentName = "developer";

现代 JavaScript 模式

Async/Await (优先)

// ✅ 好的: async/await
async function loadAgent(agentId) {
  try {
    const agent = await fetchAgent(agentId);
    const config = await loadConfig(agent.configPath);
    return { agent, config };
  } catch (error) {
    console.error(`Failed to load agent ${agentId}:`, error);
    throw error;
  }
}

// ❌ 不好: Promise 链
function loadAgent(agentId) {
  return fetchAgent(agentId)
    .then((agent) => loadConfig(agent.configPath).then((config) => ({ agent, config })))
    .catch((error) => {
      console.error(`Failed to load agent ${agentId}:`, error);
      throw error;
    });
}

解构

// ✅ 好的: 解构
const { name, id, enabled } = agent;
const [first, second, ...rest] = items;

// ❌ 不好: 手动提取
const name = agent.name;
const id = agent.id;
const enabled = agent.enabled;

箭头函数

// ✅ 好的: 箭头函数用于回调
const activeAgents = agents.filter((agent) => agent.enabled);
const agentNames = agents.map((agent) => agent.name);

// ❌ 不好: 传统函数用于简单回调
const activeAgents = agents.filter(function (agent) {
  return agent.enabled;
});

模板字面量

// ✅ 好的: 模板字面量用于字符串插值
const message = `Agent ${agentName} loaded successfully`;
const path = `${baseDir}/${agentId}/config.yaml`;

// ❌ 不好: 字符串连接
const message = 'Agent ' + agentName + ' loaded successfully';
const path = baseDir + '/' + agentId + '/config.yaml';

错误处理

// ✅ 好的: 具体错误处理和上下文
async function executeTask(taskName) {
  try {
    const task = await loadTask(taskName);
    return await task.execute();
  } catch (error) {
    console.error(`Task execution failed [${taskName}]:`, error);
    throw new Error(`Failed to execute task "${taskName}": ${error.message}`);
  }
}

// ❌ 不好: 静默失败或通用错误
async function executeTask(taskName) {
  try {
    const task = await loadTask(taskName);
    return await task.execute();
  } catch (error) {
    console.log('Error:', error);
    return null; // 静默失败
  }
}

文件组织

目录结构

.aiox-core/
├── agents/              # 代理定义 (YAML + Markdown)
├── tasks/               # 任务工作流 (Markdown)
├── templates/           # 文档模板 (YAML/Markdown)
├── workflows/           # 多步工作流 (YAML)
├── checklists/          # 验证清单 (Markdown)
├── data/                # 知识库 (Markdown)
├── utils/               # 实用脚本 (JavaScript)
├── tools/               # 工具集成 (YAML)
└── elicitation/         # 启发引擎 (JavaScript)

docs/
├── architecture/        # 项目特定架构决策
├── framework/           # 官方框架文档 (迁移到 REPO 1)
├── stories/             # 开发故事
├── epics/               # Epic 规划
└── guides/              # 实用指南

文件命名

// ✅ 好的: kebab-case 文件名
agent - executor.js;
task - runner.js;
greeting - builder.js;
context - detector.js;

// ❌ 不好: camelCase 或 PascalCase 文件名
agentExecutor.js;
TaskRunner.js;
GreetingBuilder.js;

模块结构

// ✅ 好的: 清晰的模块结构
// 文件: agent-executor.js

// 1. Imports
const fs = require('fs').promises;
const yaml = require('yaml');
const { loadConfig } = require('./config-loader');

// 2. 常数
const DEFAULT_TIMEOUT = 5000;
const MAX_RETRIES = 3;

// 3. 辅助函数 (私有)
function validateAgent(agent) {
  // ...
}

// 4. 主要 Exports (公共 API)
async function executeAgent(agentId, args) {
  // ...
}

async function loadAgent(agentId) {
  // ...
}

// 5. Exports
module.exports = {
  executeAgent,
  loadAgent,
};

命名约定

变量和函数

// ✅ 好的: camelCase 用于变量和函数
const agentName = 'developer';
const taskResult = await executeTask();

function loadAgentConfig(agentId) {
  // ...
}

async function fetchAgentData(agentId) {
  // ...
}

// ❌ 不好: snake_case 或 PascalCase
const agent_name = 'developer';
const TaskResult = await executeTask();

function LoadAgentConfig(agentId) {
  // ...
}

// ✅ 好的: PascalCase 用于类
class AgentExecutor {
  constructor(config) {
    this.config = config;
  }

  async execute(agentId) {
    // ...
  }
}

class TaskRunner {
  // ...
}

// ❌ 不好: camelCase 或 snake_case
class agentExecutor {
  // ...
}

class task_runner {
  // ...
}

常数

// ✅ 好的: SCREAMING_SNAKE_CASE 用于常数
const MAX_RETRY_ATTEMPTS = 3;
const DEFAULT_TIMEOUT_MS = 5000;
const AGENT_STATUS_ACTIVE = 'active';

// ❌ 不好: camelCase 或小写
const maxRetryAttempts = 3;
const defaulttimeout = 5000;

私有成员

// ✅ 好的: 下划线前缀表示私有 (惯例)
class AgentManager {
  constructor() {
    this._cache = new Map();
    this._isInitialized = false;
  }

  _loadFromCache(id) {
    // 私有辅助
    return this._cache.get(id);
  }

  async getAgent(id) {
    // 公共 API
    return this._loadFromCache(id) || (await this._fetchAgent(id));
  }
}

布尔变量

// ✅ 好的: is/has/should 前缀
const isEnabled = true;
const hasPermission = false;
const shouldRetry = checkCondition();

// ❌ 不好: 模糊名称
const enabled = true;
const permission = false;
const retry = checkCondition();

代码质量

ESLint 配置

{
  "env": {
    "node": true,
    "es2022": true
  },
  "extends": ["eslint:recommended"],
  "parserOptions": {
    "ecmaVersion": 13,
    "sourceType": "module"
  },
  "rules": {
    "no-console": "off",
    "no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
    "prefer-const": "error",
    "no-var": "error",
    "eqeqeq": ["error", "always"],
    "curly": ["error", "all"],
    "brace-style": ["error", "1tbs"],
    "comma-dangle": ["error", "es5"],
    "quotes": ["error", "single"],
    "semi": ["error", "always"]
  }
}

代码复杂性

// ✅ 好的: 低环路复杂度 (< 10)
function processAgent(agent) {
  if (!agent.enabled) return null;

  const config = loadConfig(agent.configPath);
  const result = executeAgent(agent, config);

  return result;
}

// ❌ 不好: 高环路复杂度
function processAgent(agent) {
  if (agent.type === 'dev') {
    if (agent.mode === 'yolo') {
      if (agent.hasStory) {
        // ... 嵌套逻辑
      } else {
        // ... 更多嵌套逻辑
      }
    } else {
      // ... 更多分支
    }
  } else if (agent.type === 'qa') {
    // ... 更多分支
  }
  // ... 仍然更多复杂性
}

重构复杂函数:

// ✅ 好的: 提取辅助函数
function processAgent(agent) {
  if (!agent.enabled) return null;

  if (agent.type === 'dev') {
    return processDevAgent(agent);
  }

  if (agent.type === 'qa') {
    return processQaAgent(agent);
  }

  return processDefaultAgent(agent);
}

DRY 原则

// ✅ 好的: 可重用函数
function validateAndLoad(filePath, schema) {
  const content = fs.readFileSync(filePath, 'utf8');
  const data = yaml.parse(content);

  if (!schema.validate(data)) {
    throw new Error(`Invalid schema: ${filePath}`);
  }

  return data;
}

const agent = validateAndLoad('agent.yaml', agentSchema);
const task = validateAndLoad('task.yaml', taskSchema);

// ❌ 不好: 重复代码
const agentContent = fs.readFileSync('agent.yaml', 'utf8');
const agentData = yaml.parse(agentContent);
if (!agentSchema.validate(agentData)) {
  throw new Error('Invalid agent schema');
}

const taskContent = fs.readFileSync('task.yaml', 'utf8');
const taskData = yaml.parse(taskContent);
if (!taskSchema.validate(taskData)) {
  throw new Error('Invalid task schema');
}

文档模式

JSDoc 注释

/**
 * 加载并执行 AIOX 代理
 *
 * @param {string} agentId - 代理的唯一标识符
 * @param {Object} args - 代理执行参数
 * @param {boolean} args.yoloMode - 启用自主模式
 * @param {string} args.storyPath - 故事文件路径 (可选)
 * @param {number} [timeout=5000] - 执行超时 (毫秒)
 * @returns {Promise<Object>} 代理执行结果
 * @throws {Error} 如果代理未找到或执行失败
 *
 * @example
 * const result = await executeAgent('dev', {
 *   yoloMode: true,
 *   storyPath: 'docs/stories/story-6.1.2.5.md'
 * });
 */
async function executeAgent(agentId, args, timeout = 5000) {
  // 实现
}

内联注释

// ✅ 好的: 解释为什么,不是什么
// 代理缓存以避免每次激活重新解析 YAML (性能优化)
const agentCache = new Map();

// yolo 模式需要决策日志用于回滚 (Story 6.1.2.6 需求)
if (yoloMode) {
  await createDecisionLog(storyId);
}

// ❌ 不好: 说明显而易见的事
// 创建新的 Map
const agentCache = new Map();

// 如果 yolo 模式为真
if (yoloMode) {
  await createDecisionLog(storyId);
}

README 文件

每个模块/目录应有 README.md:

# Agent Executor

**目的**: 加载并执行带有配置管理的 AIOX 代理。

## 使用

\`\`\`javascript
const { executeAgent } = require('./agent-executor');

const result = await executeAgent('dev', {
yoloMode: true,
storyPath: 'docs/stories/story-6.1.2.5.md'
});
\`\`\`

## API

- `executeAgent(agentId, args, timeout)` - 执行代理
- `loadAgent(agentId)` - 加载代理配置

## 依赖

- `yaml` - YAML 解析
- `fs/promises` - 文件系统操作

测试标准

测试文件命名

# 单元测试
tests/unit/context-detector.test.js
tests/unit/git-config-detector.test.js

# 集成测试
tests/integration/contextual-greeting.test.js
tests/integration/workflow-navigation.test.js

# E2E 测试
tests/e2e/agent-activation.test.js

测试结构

// ✅ 好的: 使用 Given-When-Then 命名的描述性测试名称
describe('ContextDetector', () => {
  describe('detectSessionType', () => {
    it('should return "new" when conversation history is empty', async () => {
      // Given (给定)
      const conversationHistory = [];
      const sessionFile = null;

      // When (当)
      const result = await detectSessionType(conversationHistory, sessionFile);

      // Then (那么)
      expect(result).toBe('new');
    });

    it('should return "workflow" when command pattern matches story_development', async () => {
      // Given (给定)
      const conversationHistory = [{ command: 'validate-story-draft' }, { command: 'develop' }];

      // When (当)
      const result = await detectSessionType(conversationHistory, null);

      // Then (那么)
      expect(result).toBe('workflow');
    });
  });
});

代码覆盖率

  • 最小值: 新模块 80%
  • 目标: 核心模块 90%
  • 关键: 安全/验证模块 100%
# 执行覆盖率
npm test -- --coverage

# 在 package.json 中覆盖阈值
{
  "jest": {
    "coverageThreshold": {
      "global": {
        "branches": 80,
        "functions": 80,
        "lines": 80,
        "statements": 80
      }
    }
  }
}

Git 约定

提交信息

# ✅ 好的: Conventional Commits 格式
feat: implement contextual agent greeting system [Story 6.1.2.5]
fix: resolve git config cache invalidation issue [Story 6.1.2.5]
docs: update coding standards with TypeScript config
chore: update ESLint configuration
refactor: extract greeting builder into separate module
test: add unit tests for WorkflowNavigator

# ❌ 不好: 模糊或无描述性
update files
fix bug
changes
wip

格式:

<type>: <description> [Story <id>]

<可选正文>

<可选页脚>

类型:

  • feat: 新功能
  • fix: 错误修复
  • docs: 文档更改
  • chore: 构建/工具更改
  • refactor: 代码重构 (无功能更改)
  • test: 测试添加/修改
  • perf: 性能改进
  • style: 代码样式更改 (格式等)

分支命名

# ✅ 好的: 描述性分支名称
feature/story-6.1.2.5-contextual-greeting
fix/git-config-cache-ttl
refactor/agent-executor-optimization
docs/update-coding-standards

# ❌ 不好: 模糊分支名称
update
fix
my-branch

安全模式

输入验证

// ✅ 好的: 验证所有外部输入
function executeCommand(command) {
  // 白名单验证
  const allowedCommands = ['help', 'develop', 'review', 'deploy'];

  if (!allowedCommands.includes(command)) {
    throw new Error(`Invalid command: ${command}`);
  }

  return runCommand(command);
}

// ❌ 不好: 无验证
function executeCommand(command) {
  return eval(command); // 永远不要这样做
}

路径遍历保护

// ✅ 好的: 验证文件路径
const path = require('path');

function loadFile(filePath) {
  const basePath = path.resolve(__dirname, '.aiox-core');
  const resolvedPath = path.resolve(basePath, filePath);

  // 防止目录遍历
  if (!resolvedPath.startsWith(basePath)) {
    throw new Error('Invalid file path');
  }

  return fs.readFile(resolvedPath, 'utf8');
}

// ❌ 不好: 直接使用路径
function loadFile(filePath) {
  return fs.readFile(filePath, 'utf8'); // 易受 ../../../etc/passwd 攻击
}

Secrets 管理

// ✅ 好的: 使用环境变量
const apiKey = process.env.CLICKUP_API_KEY;

if (!apiKey) {
  throw new Error('CLICKUP_API_KEY environment variable not set');
}

// ❌ 不好: Secrets 硬编码
const apiKey = 'pk_12345678_abcdefgh'; // 永远不要这样做

依赖安全

# 定期安全审计
npm audit
npm audit fix

# 使用 Snyk 或类似工具进行持续监控

应用

前提交钩子

# .husky/pre-commit
#!/bin/sh
npm run lint
npm run typecheck
npm test

CI/CD 管道

# .github/workflows/ci.yml
name: CI

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '18'
      - run: npm ci
      - run: npm run lint
      - run: npm run typecheck
      - run: npm test -- --coverage
      - run: npm audit

CodeRabbit 集成

所有 PR 由 CodeRabbit 自动审查以检查:

  • 代码质量问题
  • 安全漏洞
  • 性能问题
  • 最佳实践违反
  • 测试覆盖率差距

版本历史

版本 日期 变更 作者
1.0 2025-01-15 编码标准初始文档 Aria (architect)
1.1 2025-12-14 更新迁移通知为 SynkraAI/aiox-core [Story 6.10] Dex (dev)

相关文档:


这是 AIOX 框架的官方标准。所有代码贡献必须符合这些标准。