Show HN: Agent-data – a CLI for giving agents real-time, structured data

agent-data는 AI 에이전트가 브라우저 자동화 없이 실시간 구조화 데이터를 CLI를 통해 접근할 수 있게 하는 도구입니다. 이를 통해 에이전트가 사용자 선호를 반영하면서도 시기적절한 외부 데이터(예: 항공편 검색)를 활용해 더 유용한 작업을 수행할 수 있습니다. 기존 브라우저 자동화나 스크래핑 방식의 한계를 극복하고, 에이전트가 런타임에 적절한 엔드포인트를 찾아 호출하는 간단하고 예측 가능한 인터페이스를 제공합니다. 현재 항공편, 음식점, RSS, 소셜 미디어 등 라이브 데이터 엔드포인트를 지원하며, JSON 구조화 출력과 CLI 기반 워크플로우에 최적화되어 있습니다.

https://agent-data.dev/

#aiagent #clitool #realtimedata #structureddata #agentworkflows

agent-data

agent-data — CLI for giving agents real-time, structured data.

Real-Time Data Feeds on Outdoor Displays
📊 Outdoor signage isn’t static anymore. Real-time data—such as traffic updates and weather forecasts—is delivered dynamically on outdoor LCD screens.
#RealTimeData #OutdoorDisplays #SmartSignage #DynamicContent

FDA Pilots AI for Real-Time Clinical Trials

The FDA is shaking up the 60-year-old clinical trial process by piloting AI and data science to speed up the development of life-changing drug therapies. By harnessing the power of artificial intelligence, the agency aims to enable real-time monitoring of safety signals and endpoints, cutting years off the traditional trial timeline.

https://osintsights.com/fda-pilots-ai-for-real-time-clinical-trials?utm_source=mastodon&utm_medium=social

#ArtificialIntelligence #ClinicalTrials #Fda #RealtimeData #Healthcare

FDA Pilots AI for Real-Time Clinical Trials

Learn how FDA pilots AI for real-time clinical trials to accelerate drug development, view safety signals instantly, and discover the future of clinical research now.

OSINTSights

Pro-Grade Ham Radio Displays: Integrating OpenHamClock into PiSignage

758 words, 4 minutes read time.

A Helping Hand Needed for a Fellow Programmer

I’m reaching out to see if you can lend a hand to a talented software developer who’s currently on the job hunt. With over 30 years of experience in C#, .NET (Core/6–8), REST APIs, SQL Server, Angular/Razor, Kubernetes, and cloud CI/CD, he’s a seasoned pro with a proven track record of leading modernization projects and delivering production systems.

Some of his notable accomplishments include DB2 to SQL migrations, building real-time SignalR apps, and developing full-stack API and frontend projects. Based in Southeast Michigan, he’s looking for senior engineering, architecture, or technical lead roles that will challenge him and utilize his skills.

If you’re in a position to help, you can check out his resume and portfolio at http://charles.friasteam.com.

Let’s all look out for each other – if you know of any opportunities that might be a good fit, could you please consider passing this along to your network?

If you are a ham radio operator, you know that a HamClock is the ultimate shack companion. But what if you want to move beyond a dedicated small screen and integrate that data-rich display into a professional digital signage environment?

By using PiSignage, you can rotate your HamClock with other station metrics, weather, or club announcements. However, getting a clean, secure, and “pop-up free” experience requires a few tricks.

In this post, I’ll show you how to deploy OpenHamClock using Docker and how to strip away the UI clutter for a seamless kiosk experience.

The Setup

To follow along, you will need a PiSignage server instance. I personally run mine as a Docker container, which keeps the server stack isolated and easy to back up.

1. The Docker Compose Configuration

PiSignage and modern browsers often require secure contexts (HTTPS) for certain features. Since the standard HamClock output is HTTP, we’ll use a two-service setup: the clock itself and a lightweight SSL-wrap sidecar using socat and openssl.

docker-componse.yml

services: openhamclock: image: ghcr.io/accius/openhamclock:latest container_name: openhamclock expose: - "3000" environment: - CALLSIGN=<CALL SIGN> - LOCATOR=<Grid Square Locator> - THEME=dark - UNITS=imperial restart: unless-stopped ssl-wrap: image: alpine container_name: hamclock-ssl ports: - "3000:3000" command: > sh -c "apk add --no-cache socat openssl && openssl req -x509 -newkey rsa:2048 -keyout /tmp/key.pem -out /tmp/cert.pem -days 365 -nodes -subj '/CN=localhost' && cat /tmp/cert.pem /tmp/key.pem > /tmp/combined.pem && socat OPENSSL-LISTEN:3000,cert=/tmp/combined.pem,verify=0,fork,reuseaddr TCP:openhamclock:3000" restart: unless-stopped

2. Silencing the “What’s New” Pop-ups

When using HamClock as a signage element, you want it to be “set and forget.” The “What’s New” slide-ins are helpful for desktop users but ruin a clean kiosk display.

While there is a formal change request pending for a toggle, you can currently “force” these elements to stay hidden by injecting a bit of CSS directly into the distribution files. Run this command within your app environment:

find /app/dist -name "*.css" -exec sh -c 'echo "div[style*=\"whatsNewSlideIn\"], div[style*=\"backdrop-filter\"] { display: none !important; }" >> {}' \;

3. Setting Up the Slide in PiSignage

Once your containers are humming along, you need to tell PiSignage how to display the clock.

Create the Weblink Asset

  • Log in to your PiSignage Admin Panel.
  • Navigate to Assets > Add > Weblink.
  • Fill in the details:
    • Name: OpenHamClock
    • Link Address: https://<YOUR-HOSTNAME>:3000/?kiosk=true
  • Click Save.
  • Pro Tip: The ?kiosk=true suffix is critical. It tells HamClock to hide its own internal menus and headers, giving you a dedicated, high-contrast dashboard perfect for a wall-mounted display.

    Deploy to Your Player

  • Go to Playlists and add your new “OpenHamClock” asset.
  • Set the Duration: Set this to 0 for a permanent display, or a high number (like 300 for 5 minutes) if it’s part of a rotation.
  • Go to Groups, select your player, and deploy the playlist.
  • Your screen should refresh and show a beautiful, clean HamClock interface within seconds!

    Running PiSignage in Docker?

    For those of you looking to keep your entire server stack contained, running the PiSignage central server in Docker is the way to go. It keeps your host OS clean and makes management a breeze.

    If you’d like me to discuss how to set up a dockerized PiSignage server, please comment below!

    — 73 —

    Call to Action

    Getting this stack to play nice wasn’t a “one-and-done” install. It was a hard-fought process that took multiple attempts to finally crack the code on bypassing those “What’s New” screens and forcing a clean kiosk display. But the victory is in the uptime.

    Don’t just lurk. If you’ve got the guts to show how you’re rebuilding your station on the wreckage of the old ways, drop a comment below. How are you occupying the victory today?

    SUPPORTSUBSCRIBECONTACT ME

    D. Bryan King

    Sources

    Disclaimer:

    I love sharing what I’m learning, but please keep in mind that everything I write here—including this post—is just my personal take. These are my own opinions based on my research and my understanding of things at the time I’m writing them. Since life moves way too fast and things change quickly, please use your own best judgment and consult the experts for your specific situations!

    #AlpineLinux #AmateurRadioDashboard #amateurRadioTechnology #Automation #containerization #CSSInjection #CustomCSS #DetroitHamRadio #devops #DigitalDashboard #DigitalSignage #DisplaySolutions #Docker #DockerCompose #DXCluster #EN82le #GHCR #gridSquare #hamRadio #HamRadioKiosk #hamRadioSoftware #hamRadioTools #HamClock #HomeLab #HTTPSWrapper #KioskMode #KioskSetup #KioskTrue #Linux #MaidenheadLocator #networkSecurity #OpenSource #OpenHamClock #OpenSSL #piSignage #PiSignageDocker #PiSignageTips #RadioStationDisplay #RaspberryPi #RaspberryPiProjects #realTimeData #RemoteMonitoring #ScreenRotation #SelfHosted #ServerManagement #ShackClock #SignalTracking #SmartShack #Socat #SoftwareWorkaround #SolarData #SSLWrap #StationIntegration #TechGuide #TechnicalTutorial #UITweaks #W8DBK #WebDevelopment #WebLinkAsset
    FYI: Google Maps brings real-time bus tracking to all of England - finally: Google Maps now shows live bus locations across all of England via a UK government-backed deal, ending the guesswork for millions of passengers outside London. https://ppc.land/google-maps-brings-real-time-bus-tracking-to-all-of-england-finally/ #GoogleMaps #BusTracking #PublicTransport #TravelUK #RealTimeData
    Google Maps brings real-time bus tracking to all of England - finally

    Google Maps now shows live bus locations across all of England via a UK government-backed deal, ending the guesswork for millions of passengers outside London.

    PPC Land
    ICYMI: Cognitiv's AudienceGPT targets stale audience data with real-time AI: Cognitiv launched AudienceGPT on March 26, 2026, a deep learning tool that replaces static audience segments with dynamic, real-time consumer journey profiles. https://ppc.land/cognitivs-audiencegpt-targets-stale-audience-data-with-real-time-ai/ #Cognitiv #AudienceGPT #AI #DeepLearning #RealTimeData
    Cognitiv's AudienceGPT targets stale audience data with real-time AI

    Cognitiv launched AudienceGPT on March 26, 2026, a deep learning tool that replaces static audience segments with dynamic, real-time consumer journey profiles.

    PPC Land

    Accelerate Innovation with Real-Time Data Streaming Solutions

    Stay ahead with real-time data streaming solutions that enable instant data processing and insights. Leverage big data and real-time streaming services to enhance performance, improve responsiveness, and drive innovation.

    Read more: https://www.seasiainfotech.com/big-data

    #RealTimeData #BigDataServices #StreamingSolutions #DataProcessing #Innovation #DigitalTransformation

    Curious about the current situation in the Strait of Hormuz?🤔 Get real-time ship traffic comparisons with Talk2Earth's Earth Intelligence app. Notice the striking difference from a month ago in our latest blog post!🚢🌍 #StraitOfHormuz #EarthIntelligence #Talk2Earth #RealTimeData
    https://community.datentreiber.com/2026/03/26/talk2earth-about-the-strait-of-hormuz/?fsp_sid=757
    Talk2Earth about the Strait of Hormuz - Data & AI Business Design Community

    The Strait of Hormuz is everywhere in the news right now. But is it actually closed?Let’s Talk2Earth: just prompt something like “Show me the ship…

    Data & AI Business Design Community

    Real-time data and AI accelerate decisions — but speed without governance creates risk instead of results.

    #AIinMarketing #RealTimeData #DigitalLeadership #wdanielcoxiii #data #MarketingExecution #DecisionIntelligence