Install
$ agentstack add skill-ahoo-wang-skills-cosid-spring-boot ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
CosId Spring Boot Integration
CosId is a universal, flexible, high-performance distributed ID generator for Java 17+. The Spring Boot starter (cosid-spring-boot-starter) provides auto-configuration for all ID generation strategies.
Workflow
- Confirm the user's Spring Boot and CosId major versions. CosId 2.x targets Spring Boot 3.x and Java 17; CosId 3.x targets Spring Boot 4.x and Java 17.
- Choose the ID strategy. Use
$cosid-strategy-guidefirst when the user has not chosen between SnowflakeId, SegmentId, SegmentChainId, and CosIdGenerator. - Select the distributor and starter capability needed by the deployment: Redis, JDBC, MongoDB, ZooKeeper, proxy, manual, or StatefulSet.
- Provide the smallest working YAML for the selected strategy and backend.
- Show how the application consumes the generator: shared bean, named provider, or
@CosId. - Add validation guidance for uniqueness, ordering, machine ID ownership, segment allocation, and Actuator visibility.
Dependency Setup
Add the BOM and starter to your Gradle build. When you need a distributor backend, select the corresponding Gradle feature capability:
dependencies {
implementation platform("me.ahoo.cosid:cosid-bom:${cosidVersion}")
// Redis backend. Replace the capability with jdbc-support, mongo-support,
// zookeeper-support, proxy-support, actuator-support, etc. as needed.
implementation("me.ahoo.cosid:cosid-spring-boot-starter") {
capabilities {
requireCapability("me.ahoo.cosid:spring-redis-support")
}
}
}
For Maven, import the BOM and add the starter plus the backend module explicitly:
me.ahoo.cosid
cosid-bom
${cosid.version}
pom
import
me.ahoo.cosid
cosid-spring-boot-starter
me.ahoo.cosid
cosid-spring-redis
Choosing an ID Strategy
There are 4 ID generation strategies in CosId. The right choice depends on your requirements:
| Strategy | Throughput | Trend | Best For | |---|---|---|---| | CosIdGenerator | ~15M+/s | Time-ordered | Standalone apps, no distributed coordination needed | | SnowflakeId | ~4M+/s | Time-ordered | Distributed systems needing sortable IDs, typical microservices | | SegmentId | ~20M+/s | Monotonic | High-throughput with simple coordination, trend-increasing | | SegmentChainId | ~127M+/s | Monotonic | Maximum throughput, lock-free prefetching, production workloads |
Decision Guide
- Need maximum performance and have Redis/JDBC available? → SegmentChainId (default segment mode)
- Need time-sortable IDs across machines? → SnowflakeId
- Need compact string IDs or a large machine-ID design space? → CosIdGenerator
- Database-friendly monotonic IDs? → SegmentId or SegmentChainId
- Need only strategy selection? → Use
$cosid-strategy-guidebefore writing YAML
Configuration Templates
Full-featured Redis Setup (Most Common)
This is the most typical production configuration with both SnowflakeId and SegmentChainId:
cosid:
namespace: ${spring.application.name}
machine:
enabled: true
distributor:
type: redis
generator:
enabled: true
snowflake:
enabled: true
share:
enabled: true # shared SnowflakeId as default IdGenerator
provider:
order_id:
converter:
type: radix
prefix: ORDER
radix:
char-size: 11
pad-start: true
segment:
enabled: true
mode: chain # CHAIN = SegmentChainId (recommended), SEGMENT = basic SegmentId
distributor:
type: redis
share:
enabled: true # shared SegmentChainId as default StringIdGenerator
provider:
user_id:
step: 100
converter:
type: to_string
to-string:
char-size: 10
pad-start: true
JDBC Backend Setup
For environments where only a relational database is available:
cosid:
namespace: ${spring.application.name}
machine:
enabled: true
distributor:
type: jdbc
segment:
enabled: true
mode: chain
distributor:
type: jdbc
jdbc:
enable-auto-init-cosid-table: true
enable-auto-init-id-segment: true
This auto-creates the cosid table and segment rows. The table schema:
CREATE TABLE IF NOT EXISTS cosid (
name VARCHAR(100) NOT NULL,
last_max_id BIGINT NOT NULL DEFAULT 0,
last_fetch_time BIGINT NOT NULL DEFAULT 0,
PRIMARY KEY (name)
);
MongoDB Backend Setup
cosid:
namespace: ${spring.application.name}
machine:
enabled: true
distributor:
type: mongo
mongo:
database: cosid_db
segment:
enabled: true
mode: chain
distributor:
type: mongo
mongo:
database: cosid_db
ZooKeeper Backend Setup
cosid:
namespace: ${spring.application.name}
machine:
enabled: true
distributor:
type: zookeeper
snowflake:
enabled: true
segment:
enabled: true
mode: chain
distributor:
type: zookeeper
Manual Machine ID (for fixed-instance deployments)
When you have a known, fixed set of instances:
cosid:
namespace: ${spring.application.name}
machine:
enabled: true
distributor:
type: manual
manual:
machine-id: 1 # must be unique per instance
snowflake:
enabled: true
Kubernetes StatefulSet
For StatefulSet deployments, the pod ordinal is used as the machine ID:
cosid:
namespace: ${spring.application.name}
machine:
enabled: true
distributor:
type: stateful_set
snowflake:
enabled: true
ID Converter Types
Converters transform long IDs into String representations. Configure via converter in each provider definition.
| Type | Description | Example Output | |---|---|---| | radix (default) | Base62 encoding (0-9, A-Z, a-z) | ORDER-0Gjk3R0p | | radix36 | Base36 encoding (0-9, A-Z) | BIZ-00001234 | | to_string | Plain decimal string with padding | 0000000001 | | snowflake_friendly | Human-readable snowflake timestamp | 20240101-120000-1-0-0 | | custom | Your own IdConverter implementation | — |
Converter Configuration Examples
# Short alphanumeric ID (radix62)
converter:
type: radix
prefix: ORDER
radix:
char-size: 11
pad-start: true
# Numeric string with date prefix
converter:
type: to_string
prefix: BIZ-
date-prefix:
enabled: true
pattern: yyMMdd
to-string:
char-size: 10
pad-start: true
# Human-readable snowflake
converter:
type: snowflake_friendly
friendly:
pad-start: true
# With group-based prefix (for date-partitioned segments)
converter:
type: to_string
prefix: BIZ-
group-prefix:
enabled: true
to-string:
char-size: 8
pad-start: true
Using the ID Generator in Code
Injecting the Shared IdGenerator
When share.enabled: true, a default IdGenerator bean is registered:
@Service
public class OrderService {
private final IdGenerator idGenerator;
public OrderService(IdGenerator idGenerator) {
this.idGenerator = idGenerator;
}
public Order createOrder() {
long orderId = idGenerator.generate();
String orderIdStr = idGenerator.generateAsString();
// ...
}
}
Injecting Named Generators
Named generators from provider are available via IdGeneratorProvider:
@Service
public class UserService {
private final IdGenerator userIdGenerator;
public UserService(IdGeneratorProvider provider) {
this.userIdGenerator = provider.get("user_id");
}
public User createUser() {
long userId = userIdGenerator.generate();
// ...
}
}
Using @CosId Annotation
The @CosId annotation auto-assigns IDs to entity fields:
import me.ahoo.cosid.annotation.CosId;
public class Order {
@CosId("order_id")
private Long id;
// getters/setters
}
SnowflakeId State Parsing
Parse snowflake IDs back into their components:
SnowflakeIdState state = snowflakeId.getStateParser().parse(id);
// state.getTimestamp(), state.getMachineId(), state.getSequence()
SnowflakeId Bit Layout Customization
The default MillisecondSnowflakeId uses 41-bit timestamp, 10-bit machineId, 12-bit sequence. Customize per-provider:
cosid:
snowflake:
provider:
short_lived_id:
timestamp-unit: second # use seconds instead of milliseconds
epoch: 1577203200 # custom epoch (2020-01-01)
timestamp-bit: 31
machine-bit: 10
sequence-bit: 22
Bit allocation must satisfy: timestampBit + machineBit + sequenceBit = 63.
Segment Grouping (Date-partitioned IDs)
Group segments by time period for date-based ID sequences:
cosid:
segment:
provider:
daily_order:
group:
by: year_month_day # or year, year_month
pattern: yyMMdd
converter:
type: to_string
prefix: BIZ-
group-prefix:
enabled: true
to-string:
char-size: 8
pad-start: true
Machine ID Management
Guarder Configuration
The guarder keeps machine ID registrations alive via heartbeat:
cosid:
machine:
enabled: true
distributor:
type: redis
guarder:
enabled: true
safe-guard-duration: 5m # how long the guard is valid
initial-delay: 1s
delay: 10s
Clock Backwards Synchronization
Handle clock drift in distributed environments:
cosid:
machine:
enabled: true
clock-backwards:
spin-threshold: 100
broken-threshold: 2000
spin-threshold: Small clock drift is handled by spinning/waitingbroken-threshold: Large clock drift throwsClockTooManyBackwardsException
State Storage
Machine state persists locally to survive restarts:
cosid:
machine:
enabled: true
state-storage:
local:
state-location: .cosid-machine-state # default path
Proxy Mode
For architectures that prefer a dedicated ID service:
# Client side
cosid:
proxy:
enabled: true
segment:
enabled: true
mode: chain
distributor:
type: proxy
Actuator / Monitoring
Enable Spring Boot Actuator endpoints for monitoring:
management:
endpoints:
web:
exposure:
include:
- cosid
- cosidGenerator
- cosidStringGenerator
- health
endpoint:
health:
show-details: always
The cosid endpoint shows all registered ID generators and their stats.
Validation Checklist
- Run a focused Spring Boot test that loads the application context with the chosen backend capability.
- Generate IDs concurrently and assert uniqueness.
- For SnowflakeId, verify machine ID allocation and clock-backwards settings.
- For SegmentId/SegmentChainId, verify the segment distributor initializes the
cosidtable or backend state. - For converters, assert the expected prefix, padding, radix, and string length.
- For shared beans, assert
IdGeneratororStringIdGeneratorresolves to the intended provider. - For production services, expose and inspect the CosId Actuator endpoint when actuator support is enabled.
Response Template
When answering a Spring Boot integration request, include:
- Dependency coordinates and the required backend capability.
- Minimal
application.ymlfor the selected generator. - Code snippet for injection or
@CosId. - Operational notes for machine ID, clock, state storage, and monitoring.
- A small test or verification command the user can run.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Ahoo-Wang
- Source: Ahoo-Wang/skills
- License: Apache-2.0
- Homepage: https://skills.ahoo.me/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.