用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Hack23/cia --skill maven-build-management命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Identity and access management: RBAC, least privilege, MFA, quarterly reviews per ISO 27001 A.5.15, A.8.2, A.8.3
Business continuity and disaster recovery: 30-day retention, quarterly restore tests, RTO/RPO targets per ISO 27001 A.17
Political psychology, cognitive biases, group dynamics, leadership analysis, decision-making patterns for Swedish political intelligence
基于 SOC 职业分类
正在显示 SKILL.md
| name | maven-build-management |
| description | Manage multi-module Maven builds: dependencies, plugins, profiles, reproducible builds |
Manage CIA platform's multi-module Maven build with proper dependency management and plugin configuration.
<project>
<modules>
<module>parent-pom</module>
<module>model.common.api</module>
<module>service.api</module>
<module>service.impl</module>
<module>citizen-intelligence-agency</module>
</modules>
</project>
<!-- parent-pom/pom.xml -->
<properties>
<spring.version>5.3.34</spring.version>
<vaadin.version>8.27.4</vaadin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${spring.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>production</id>
<properties>
<spring.profiles.active>production</spring.profiles.active>
</properties>
</profile>
</profiles>
# Clean install all modules
mvn clean install
# Skip tests
mvn clean install -DskipTests
# Specific module
mvn clean install -pl citizen-intelligence-agency -am
# With profile
mvn clean install -Pproduction