惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
罗磊的独立博客
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园 - 叶小钗
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
B
Blog
V
Visual Studio Blog
雷峰网
雷峰网
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
We Just Open-Sourced the Fastest Way to Integrate Kiponos...
Devops Kiponos · 2026-06-19 · via DEV Community

Devops Kiponos

If you've ever tried asking an AI agent to wire up a new SDK, you know the pain: half the docs are for humans, the tokens live in three different places, and the agent confidently hallucinates your config profile.

We shipped something on github.com/kiponos-io/kiponos-io to fix that.

What is Kiponos?

Kiponos.io is a real-time config hub. You define variables in your browser; connected SDKs get updates over a permanent WebSocket — no redeploy, no restart, no refresh.

Kiponos kiponos = Kiponos.createForCurrentTeam();
String url = kiponos.path("useful-urls", "Development", "Java", "SpringBoot").get("starter");
// always the latest value, in memory, in real time

What's new in the public repo

Three pieces, one goal: get from zero to working SDK in minutes — with or without an AI agent.

1. Golden Java example (golden/java/)

A minimal Gradle project that connects, reads one config value, prints it, and disconnects.

git clone https://github.com/kiponos-io/kiponos-io.git
cd kiponos-io/golden/java
cp kiponos.local.gradle.example kiponos.local.gradle
# paste tokens + profile from your Kiponos.io Connect screen
./gradlew run

Credentials stay in a gitignored local file — not your shell profile, not committed source.

2. Agent skill (skills/kiponos/)

An Agent Skills skill for Grok Build, Cursor, Claude Code, GitHub Copilot, and similar tools. It encodes the full integration contract:

  • KIPONOS_ID and KIPONOS_ACCESS env vars
  • JVM property -Dkiponos="['app']['release']['env']['profile']"
  • Gradle, Maven, and Spring Boot patterns
  • disconnect() on shutdown

Install it:

./skills/install.sh

Then tell your agent: "Integrate Kiponos SDK into this project."

3. AGENTS.md

A repo-root contract any agent can read without skill installation. If your tool supports AGENTS.md, it already knows where to look.

Why we built it this way

Developers using agentic tools don't need another PDF. They need a machine-readable integration spec plus a runnable proof that tokens and profile actually work.

The two real friction points are always the same:

  1. TokensKIPONOS_ID + KIPONOS_ACCESS from the Connect screen
  2. Profile — the bracket path that selects your config tree slice

The golden example proves #1 and #2. The skill teaches your agent to wire them into your project.

What's coming

  • A public sandbox with shared read tokens (try before signup)
  • A system-wide Kiponos local agent (MCP + skill installer)
  • More examples and community config trees

Try it

If you integrate Kiponos with an agent and hit a wall, open an issue — we're especially interested in what agents still get wrong.


Kiponos.io — real-time config, zero latency, no restarts.