Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

open-leqi-assistant打开乐奇助手

Agent Skill

open-leqi-assistant 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,281

周安装

96

GitHub Stars

公开资料未说明

下载量

799
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:open-leqi-assistant(打开乐奇助手)
来源仓库:https://github.com/allanseven/open-leqi-assistant
安装命令:
openclaw skills install open-leqi-assistant
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install open-leqi-assistant

简介

乐企(open-leqi)项目分析与代码定位助手技能。当用户询问关于乐企发票系统、勾选能力、抵扣功能、用票接口等问题时触发。本技能提供项目架构理解、代码快速定位、业务流程分析和问题诊断建议。

SKILL.md

name
open-leqi-assistant
description
|

乐企(open-leqi)项目分析助手

技能概述

本技能基于百望乐企数字开放平台项目,专注于帮助开发者快速理解项目架构、定位代码、解答业务问题。

项目结构

D:/leqi/open-leqi/
├── open-leqi-api/          # API模块 - Feign客户端定义
│   └── src/main/java/com/baiwang/platform/openleqi/
│       ├── api/            # 29个Feign Client接口
│       ├── model/          # 数据模型(163个)
│       └── farm/           # 农业相关API
│
├── open-leqi-service/      # 服务模块 - 核心业务实现
│   └── src/main/java/com/baiwang/platform/openleqi/
│       ├── web/            # 60个Controller控制器
│       ├── service/impl/   # 122个Service实现
│       ├── dao/            # 数据访问层(109个)
│       ├── common/        # 公共工具(508个)
│       ├── config/        # 配置类
│       ├── job/           # 定时任务(19个)
│       └── intergration/  # 外部集成(48个)
│
└── startup/               # 启动模块

核心业务模块

发票管理

模块ControllerServiceClient说明
发票主表LqInvoiceMainControllerLqInvoiceMainServiceLqInvoiceMainClient全电发票核心数据
发票明细LqInvoiceDetailControllerLqInvoiceDetailServiceLqInvoiceDetailClient发票商品明细
发票抵扣LqInvoiceDeductControllerLqInvoiceDeductServiceLqInvoiceDeductClient增值税抵扣勾选
发票作废-LqWarrantPoolServiceLqWarrantSyncClient发票作废管理

勾选能力

模块ControllerService说明
抵扣勾选LqWithholdDeductControllerLqWithholdDeductService勾选用于抵扣
退税勾选LqWarrantDeductControllerLqWarrantDeductService勾选用于退税
不抵扣勾选LqNotdeductInitTaskControllerLqNotdeductInitTaskService不抵扣处理
农产品抵扣LqFarmInvoiceDeductWeightControllerLqFarmInvoiceDeductWeightService农产品加计扣除

用票能力

模块ControllerService说明
实时用票LqSyncControllerLqSyncService发票开具
下载发票LqDownloadTaskControllerLqDownloadTaskService发票下载
发票池LqInvoicePoolTaskControllerLqInvoicePoolTaskService发票池管理

代码定位规则

根据功能查询Controller

// 发票相关: 搜索 "LqInvoice*Controller"
com.baiwang.platform.openleqi.web.LqInvoiceMainController
com.baiwang.platform.openleqi.web.LqInvoiceDetailController
com.baiwang.platform.openleqi.web.LqInvoiceDeductController

// 勾选相关: 搜索 "Lq*DeductController" 或 "Lq*WarrantController"
com.baiwang.platform.openleqi.web.LqWithholdDeductController
com.baiwang.platform.openleqi.web.LqWarrantDeductController

根据功能查询Service

// 服务接口: com.baiwang.platform.openleqi.service.Lq*Service
// 服务实现: com.baiwang.platform.openleqi.service.impl.Lq*ServiceImpl

根据功能查询DAO

// Entity: com.baiwang.platform.openleqi.dao.entity.Lq*
// Mapper: com.baiwang.platform.openleqi.dao.mapper.Lq*Mapper

常用业务场景

场景1: 查询发票信息

  1. Controller: LqInvoiceMainController/web/lqInvoiceMain/queryPageList
  2. Service: LqInvoiceMainService
  3. DAO: LqInvoiceMainMapper

场景2: 抵扣勾选处理

  1. Controller: LqWithholdDeductController → 抵扣接口
  2. Service: LqWithholdDeductService
  3. 核心方法: deduct() / undoDeduct()

场景3: 发票开具

  1. Controller: LqSyncController
  2. Service: LqSyncService.syncInvoice()
  3. 调用链: OFS系统 → 乐企 → 返回结果

项目规范

Spring Boot规范

  • 使用@RequiredArgsConstructor代替构造函数注入
  • 使用Lombok简化代码
  • 分层清晰: Controller → Service → DAO

命名规范

  • Controller: Lq{业务}Controller (例: LqInvoiceMainController)
  • Service: Lq{业务}Service (例: LqInvoiceMainService)
  • Entity: Lq{业务} (例: LqInvoiceMain)
  • Mapper: Lq{业务}Mapper (例: LqInvoiceMainMapper)

API规范

  • 使用Swagger @Api @ApiOperation 注解
  • 使用BWJsonResultDto统一返回格式
  • 使用@Validated进行参数校验

外部依赖

  • 百望BOP SDK: com.baiwang.bop:baiwang-bopsdk:3.4.822
  • 父工程: com.baiwang.basictools:bw-spring-boot-starter-parent-security:2.7.196
  • 数据库: MyBatis-Plus

快速查询

当用户提问时,按以下顺序响应:

  1. 理解问题: 识别用户询问的业务场景
  2. 定位代码: 根据上表找到对应的Controller/Service/DAO
  3. 给出路径: 提供完整的文件路径
  4. 分析问题: 简要说明代码逻辑
  5. 建议方案: 提供问题解决思路

参考文档

  • references/project-architecture.md - 详细项目架构说明
  • references/business-flows.md - 业务流程图说明
  • references/api-guide.md - API接口文档索引

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

95.47%
按下载量换算763

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills