スキル一覧に戻る
bitsoex

java-standards

by bitsoex

Bitso Java API Wrapper

34🍴 30📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: java-standards description: > Java service standards for Bitso projects. Covers tech stack requirements, project organization, code review guidelines, MapStruct usage, and build verification practices. Use when creating new Java services or reviewing existing code. compatibility: Java projects using Gradle with Spring Boot metadata: version: "1.0.0" technology: java category: standards tags: - java - standards - code-review - project-structure - mapstruct

Java Standards

Java service standards for Bitso projects.

When to use this skill

  • Creating new Java services or modules
  • Understanding project organization patterns
  • Reviewing Java code for standards compliance
  • Configuring MapStruct for object mapping
  • Verifying builds after code changes

Skill Contents

Sections

Available Resources

📚 references/ - Detailed documentation


Tech Stack

ComponentVersionNotes
Java21 (LTS)Current LTS version
Gradle9.2.1Recommended for all projects
Spring Boot3.5.9Latest (min 3.5.9) - preparing for Spring Boot 4
Database AccessjOOQFor accessing PostgreSQL
DatabasesPostgreSQL, RedisPrimary data stores
Inter-service CommunicationgRPCStandard protocol
Object MappingMapStructFor DTO/domain mapping

For Spring Boot upgrades, use /upgrade-to-recommended-versions.

Project Organization

Projects should be organized with domain-based modules:

root-project/
├── build.gradle
├── settings.gradle
├── docs/                    # Documentation
├── bitso-libs/              # Library modules
│   ├── <subdomain>/         # Domain logic
│   └── <subdomain-proto>/   # Protobuf definitions
└── bitso-services/          # Service modules
    └── <domain>/            # Spring Boot application

Build Verification

After updating Java or Groovy code, verify changes:

# Run tests to verify changes
./gradlew test 2>&1 | grep -E "FAILED|Error" || echo "All tests passed"

# Or run full build with tests
./gradlew build 2>&1 | grep -E "FAILED|Error" || echo "Build successful"

If problems are found, fix them before committing.

References

ReferenceDescription
references/services.mdTech stack, project structure, dependency management, MapStruct
references/code-review.mdJava 21 standards, coding style, var keyword usage
references/build-verification.mdBuild commands and verification practices
  • .cursor/rules/java-services-standards.mdc - Full service standards
  • .cursor/rules/java-code-review-standards.mdc - Code review guidelines
  • .cursor/rules/java-run-build-after-changes.mdc - Build verification
SkillPurpose
gradle-standardsGradle configuration
grpc-standardsgRPC service implementation
database-integrationjOOQ and Flyway

スコア

総合スコア

65/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です