Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

module-development模块开发

Agent Skill

module-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

288

周安装

12

GitHub Stars

公开资料未说明

下载量

96
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:module-development(模块开发)
来源仓库:https://github.com/qloapps/agent-skills
仓库路径:skills/module-development
安装命令:
npx skills add https://github.com/qloapps/agent-skills --skill module-development
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/qloapps/agent-skills --skill module-development

简介

module-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 可结合来源仓库和安装命令进一步核验实际功能和限制。

SKILL.md

QloApps Module Development

Create production-ready feature modules for QloApps using hooks-first architecture.

Quick Start

Create complete QloApps modules that:

  • Work entirely within module folder (no core modifications)
  • Use hooks for integration (hooks-first approach)
  • Follow QloApps coding standards
  • Include proper security, multilang, and permissions

See architecture.md for full module directory structure and required files.


When to Use This Skill

Applies to:

  • Creating new features for QloApps
  • Building custom hotel management functionality
  • Extending booking/reservation capabilities
  • Adding admin dashboard features
  • Creating customer-facing features

When NOT to Use

  • Payment modules → payment-module-development skill
  • Statistics modules → stats-module-development skill

Critical Development Principles

Module-Only Development (Non-Negotiable)

All module work stays inside modules/{modulename}/ folder.

NEVER:

  • Modify core files directly
  • Create files outside module folder
  • Change existing QloApps files

ALWAYS:

  • Work within your module directory
  • Use hooks for integration
  • Keep module self-contained

Exception: Only if absolutely no alternative exists, document root-level file requirements in README.md for manual user placement.


Hooks-First Architecture

Priority order:

  1. Use existing hooks (90% of cases)
  2. Create custom hooks (when existing hooks don't work)
  3. Use overrides (last resort — can conflict with other modules)

See hooks-system.md for hook registration patterns, common hooks reference, custom hook creation, and override guidelines.


Skill Components

Reference guides for each area of module development:


Quick Reference

Module Creation Checklist

  • Choose module name and calculate prefix
  • Create module folder structure
  • Add main module class file
  • Add mandatory files (LICENSE.md, README.md, CHANGELOG.txt, index.php)
  • Define constants in define.php
  • Create database classes (if needed)
  • Implement install/uninstall
  • Register hooks (hooks-first!)
  • Create controllers (if needed)
  • Create templates
  • Add CSS/JS files (qlo_* naming)
  • Implement security measures
  • Add multilanguage support
  • Test thoroughly
  • Create upgrade scripts
  • Push to Git

See coding-conventions.md for prefix calculation rules and naming standards. See security-validation.md for input escaping, CSRF, and XSS prevention patterns.


Development Workflow

  1. Plan — Define module purpose, calculate prefix, identify hooks, design database schema, plan multilang requirements
  2. Setup — Create folder structure, main module file, mandatory files (LICENSE.md, README.md, CHANGELOG.txt, index.php), define.php with constants, Git repository
  3. Database — Create database class, ObjectModel classes, install SQL, multilang field support
  4. Develop — Implement install/uninstall, register hooks, create controllers, build templates with escaping, add CSS/JS, implement security and permission checks
  5. Test — Test all features, multiple languages, different employee permissions
  6. Deploy — Update README.md and CHANGELOG.txt, document manual steps, create upgrade scripts, push to Git

Module Template

See architecture.md for the complete module class template with constructor, install/uninstall, and hook methods. Reference implementation: modules/hotelreservationsystem/hotelreservationsystem.php


Common Pitfalls

  1. Modifying core files directly — Use hooks instead. If hooks don't work, create custom hook and document placement in README.
  2. HTML in PHP files — All HTML goes in.tpl files, load via templates.
  3. Forgetting prefix rules — Follow strict prefix rules in coding-conventions.md.
  4. No SQL escaping — Always use (int) for IDs and pSQL() for strings.
  5. Skipping permission checks — Check $this->tabAccess in admin controllers and HotelBranchInformation::addHotelRestriction() for hotel-specific data.

Validation Checklist

Verify before deployment:

Functionality

  • Module installs without errors
  • Module uninstalls cleanly (removes all data)
  • All features work as expected
  • No errors in QloApps logs

Code Quality

  • No HTML in PHP files
  • No CSS/JS in TPL files
  • All variables in camelCase
  • Prefix rules followed correctly
  • Yoda conditions applied where suitable
  • Comments added for complex logic
  • License headers on all files
  • index.php in every folder

Security

  • All inputs validated and type-cast
  • SQL queries use pSQL() for strings
  • Templates use {$var|escape:'html':'UTF-8'}
  • Front ajax uses validation tokens
  • Employee permissions checked
  • Hotel access permissions checked (if applicable)

Database

  • Table names use *DB_PREFIX* and module prefix
  • Queries only select needed fields (no SELECT *)
  • All query variables properly type-cast
  • Tables created in install, dropped in uninstall
  • Multilang data handled for new languages

Multilanguage

  • All user-facing text uses $this->l()
  • Multilang fields supported in forms
  • Tested with multiple languages
  • Mail templates created for all languages

Files & Structure

  • LICENSE.md present (OSL-3.0)
  • README.md complete with all documentation
  • CHANGELOG.txt updated
  • config.xml present
  • logo.png and logo.gif present
  • All file/folder names follow conventions

Testing

  • Tested with different employee roles
  • Tested with multilanguage
  • Tested with multishop (if applicable)
  • All edge cases covered

Deployment

  • Upgrade script template created
  • Git repository updated

Reference Files

Reference these existing implementations:

FilePurposeKey Concepts
modules/hotelreservationsystem/hotelreservationsystem.phpMain module classStructure, hooks, install/uninstall
modules/hotelreservationsystem/define.phpModule constantsConstant definition pattern
modules/hotelreservationsystem/classes/ObjectModel classesDatabase models, CRUD operations
modules/hotelreservationsystem/classes/HotelReservationSystemDb.phpDatabase classTable creation, install/uninstall
modules/hotelreservationsystem/controllers/admin/Admin controllersCRUD, forms, permissions

Troubleshooting

  1. Module won't install — Check database table creation SQL, verify hook registration, ensure parent::install() is called first.
  2. Hooks not firing — Verify hook is registered in install(), method name matches hook{HookName}, re-install module if needed.
  3. Override not working — Delete cache/class_index.php, verify class extends {ClassName}Core, check file is in correct override folder.

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.72%
按下载量换算36

Claude

29.59%
按下载量换算28

Cursor

20.01%
按下载量换算19

Gemini CLI

9.06%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills