<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Tilebox News</title><link>https://tilebox.com/dispatch/news</link><description>Product releases and updates from the Tilebox team.</description><language>en</language><image><url>https://tilebox.com/rss-icon.png</url><title>Tilebox News</title><link>https://tilebox.com/dispatch/news</link><width>144</width><height>144</height></image><atom:link href="https://tilebox.com/dispatch/news/rss.xml" rel="self" type="application/rss+xml"/><item><title>A clearer place to start</title><link>https://tilebox.com/dispatch/news/a-clearer-place-to-start</link><guid isPermaLink="true">https://tilebox.com/dispatch/news/a-clearer-place-to-start</guid><description>We’ve rebuilt the website and updated the console quickstart.</description><content:encoded>&lt;p&gt;&lt;img src=&quot;https://tilebox.com/images/news/new-website-desktop.webp&quot; alt=&quot;The rebuilt Tilebox homepage on desktop, showing its geospatial workflow introduction and product preview.&quot;&gt;&lt;/p&gt;
&lt;p&gt;We’ve rebuilt tilebox.com. We want our website to evolve with the product, and we can now make changes much faster.&lt;/p&gt;
&lt;p&gt;We focused on clarity, speed, and accessibility. You should be able to find the information you need to decide whether Tilebox fits your work. We also updated the quickstart in the console to help you get a first result sooner.&lt;/p&gt;
&lt;p&gt;Laura used it to make a satellite timelapse of her hometown, Valencia. The video below shows the result, followed by the tasks and logs behind it. You can &lt;a href=&quot;https://console.tilebox.com/home/quickstart&quot;&gt;try the quickstart&lt;/a&gt; and open the Python code in the console to see how it works.&lt;/p&gt;
&lt;figure&gt;  &lt;video src=&quot;https://tilebox.com/videos/news/tilebox-quickstart.mp4&quot; poster=&quot;https://tilebox.com/images/news/tilebox-quickstart.webp&quot; aria-label=&quot;Valencia satellite timelapse and its workflow tasks and logs&quot; controls=&quot;&quot; playsinline=&quot;&quot; muted=&quot;&quot; preload=&quot;metadata&quot;&gt;&lt;/video&gt;   &lt;figcaption&gt;A satellite timelapse of Valencia, followed by the task timeline and logs in the console.&lt;/figcaption&gt; &lt;/figure&gt; 
&lt;p&gt;I hope you enjoy exploring the site. If you can’t find an answer, or something doesn’t work, &lt;a href=&quot;https://discord.gg/Rd4MFYdnht&quot;&gt;tell us on Discord&lt;/a&gt;. That will help us decide what to improve next.&lt;/p&gt;</content:encoded><media:content url="https://tilebox.com/images/news/new-website-desktop.webp" medium="image"><media:title>The rebuilt Tilebox homepage on desktop, showing its geospatial workflow introduction and product preview.</media:title></media:content><media:thumbnail url="https://tilebox.com/images/news/new-website-desktop.webp"/><category>news</category><pubDate>Thu, 17 Sep 2026 00:00:00 GMT</pubDate><dc:creator>Stefan Amberger</dc:creator></item><item><title>Tilebox Live from Your Terminal: A CLI for Humans and Agents</title><link>https://tilebox.com/dispatch/news/cli-release-v0.1.0</link><guid isPermaLink="true">https://tilebox.com/dispatch/news/cli-release-v0.1.0</guid><description>Human and agents can inspect datasets, query datapoints, submit workflow jobs, read logs, and search docs  without leaving the shell.</description><content:encoded>&lt;p&gt;&lt;img src=&quot;https://tilebox.com/images/publication/ea80a08df07b38c0.webp&quot; alt=&quot;Tilebox Live from Your Terminal: A CLI for Humans and Agents&quot;&gt;&lt;/p&gt;&lt;p&gt;Command Line Interface (CLI) tools were built for humans, but today’s coding agents need definitive structure and rules. &lt;a href=&quot;https://docs.tilebox.com/agents-and-ai-tools/tilebox-cli&quot;&gt;We’ve designed our CLI for both&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Humans&lt;/strong&gt; get a clean, readable terminal experience with familiar commands&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;AI agents&lt;/strong&gt; get structured, predictable output they can reliably parse and act on&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;tilebox-cli&quot;&gt;Tilebox CLI&lt;/h2&gt;
&lt;p&gt;With this release, developers, operators, and coding agents gain a direct access point to Tilebox from the terminal: inspect datasets, query datapoints, submit workflow jobs, read logs, search docs, and discover the whole command surface without leaving the shell.&lt;/p&gt;
&lt;p&gt;The release is built around a simple idea: a CLI should be readable for humans and precise enough for agents. Humans need concise commands, useful terminal output, and familiar verbs. Agents need structured output, bounded results, clear validation, and machine-readable descriptions of what each command accepts and returns. Tilebox CLI supports both use-cases right from the very first release.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://tilebox.com/images/publication/04b5e3188aa5e431.webp&quot; alt=&quot;Tilebox CLI human-readable terminal output beside structured output for agents&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Tilebox CLI for Humans (left) and Agents (right)&lt;/em&gt;&lt;/p&gt;
&lt;h2 id=&quot;agent-native-cli-design-principles&quot;&gt;Agent-native CLI design principles&lt;/h2&gt;
&lt;p&gt;Agent support isn’t one feature. It is a set of design choices that reduce ambiguity every time a command runs.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Consistent vocabulary:&lt;/strong&gt; Commands are grouped into clear families such as &lt;code&gt;dataset&lt;/code&gt; , &lt;code&gt;job&lt;/code&gt; , and &lt;code&gt;cluster&lt;/code&gt; , and use consistent verbs such as &lt;code&gt;list&lt;/code&gt; , &lt;code&gt;get&lt;/code&gt; , &lt;code&gt;create&lt;/code&gt; , &lt;code&gt;update&lt;/code&gt; , &lt;code&gt;delete&lt;/code&gt; , and &lt;code&gt;submit&lt;/code&gt; .&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Structured output:&lt;/strong&gt; Every commands accepts a &lt;code&gt;--json&lt;/code&gt; flag, which gives agents parseable results without changing the command a human would use.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Structured discovery:&lt;/strong&gt; &lt;code&gt;tilebox agent-context&lt;/code&gt; exposes commands, arguments, flags, descriptions, and output schemas as JSON.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;File-based input:&lt;/strong&gt; Commands support shorthand input for small values and file input for larger generated content; for example, &lt;code&gt;tilebox dataset create&lt;/code&gt; accepts both &lt;code&gt;--description&lt;/code&gt; and &lt;code&gt;--description-file&lt;/code&gt; .&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Async-aware workflows:&lt;/strong&gt; Commands that trigger asynchronous execution can wait on output, avoiding fragile polling loops in scripts and agent workflows.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bounded and paginated results:&lt;/strong&gt; All &lt;code&gt;list&lt;/code&gt; operations expose explicit &lt;code&gt;--limit&lt;/code&gt; and &lt;code&gt;--cursor&lt;/code&gt; flags, so agents can control output size and explicitly paginate when requested.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Actionable validation:&lt;/strong&gt; Validation errors are concise and explain how to fix the input.&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;&amp;gt; tilebox job list  --state unknown
error: --state must be one of: submitted running started completed failed canceled (got: &apos;unknown&apos;)

Usage:
--state: comma-separated job states: submitted,running,started,completed,failed,canceled&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;These choices also improve the human experience. A predictable CLI is easier to use, easier to script, and easier to debug when something goes wrong.&lt;/p&gt;
&lt;h2 id=&quot;command-context-for-agents&quot;&gt;Command context for agents&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;tilebox agent-context&lt;/code&gt; is the main agent-native interface in the CLI. It returns machine-readable command metadata directly from the binary, so an agent can inspect the available commands before deciding what to run.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;tilebox agent-context&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The context can be scoped to one command:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;tilebox agent-context job list&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;For commands with structured output, agents can request the output schema before executing the command:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;tilebox agent-context job list --output-schema&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;For &lt;code&gt;tilebox job list&lt;/code&gt;, the schema describes fields such as &lt;code&gt;jobs&lt;/code&gt;, &lt;code&gt;next_cursor&lt;/code&gt;, &lt;code&gt;sort_order&lt;/code&gt;, job &lt;code&gt;id&lt;/code&gt;, &lt;code&gt;state&lt;/code&gt;, &lt;code&gt;submitted_at&lt;/code&gt;, &lt;code&gt;progress&lt;/code&gt;, and &lt;code&gt;execution_stats&lt;/code&gt;. An agent can use that schema to choose a &lt;code&gt;jq&lt;/code&gt; expression, decide whether pagination is needed, or validate the output it receives.&lt;/p&gt;
&lt;h2 id=&quot;agent-skills-for-tilebox&quot;&gt;Agent skills for Tilebox&lt;/h2&gt;
&lt;p&gt;Alongside the CLI, we are publishing &lt;a href=&quot;https://github.com/tilebox/skills&quot;&gt;tilebox/skills&lt;/a&gt;: Agent Skills that explain how agents can best use the Tilebox CLI. The CLI exposes the command surface and output schemas; the skills teach agents how to combine those commands into reliable Tilebox workflows.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;npx skills add tilebox/skills&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Together, &lt;code&gt;--help&lt;/code&gt;, &lt;code&gt;agent-context&lt;/code&gt;, and Tilebox Skills give humans and agents the right level of guidance for the task at hand.&lt;/p&gt;
&lt;h2 id=&quot;start-using-the-tilebox-cli&quot;&gt;Start using the Tilebox CLI&lt;/h2&gt;
&lt;p&gt;Tilebox CLI v0.1.0 is available now. Install it, create an account and API key in the &lt;a href=&quot;https://console.tilebox.com/&quot;&gt;Tilebox Console&lt;/a&gt; to get started:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;gt; curl -fsSL https://install.tilebox.com/wizard.sh | sh

&amp;gt; tilebox dataset list

&amp;gt; tilebox dataset query open_data.copernicus.sentinel2_msi \
  --last 7d \
  --spatial-extent &apos;POLYGON((-109.05 41,-109.05 37,-102.05 37,-102.05 41,-109.05 41))&apos; \
  --limit 10&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;a href=&quot;https://docs.tilebox.com/agents-and-ai-tools/tilebox-cli&quot;&gt;Read the docs&lt;/a&gt; or &lt;a href=&quot;https://console.tilebox.com/sign-up&quot;&gt;Sign up&lt;/a&gt;&lt;/p&gt;</content:encoded><media:content url="https://tilebox.com/images/publication/ea80a08df07b38c0.webp" medium="image"><media:title>Tilebox Live from Your Terminal: A CLI for Humans and Agents</media:title></media:content><media:thumbnail url="https://tilebox.com/images/publication/ea80a08df07b38c0.webp"/><category>news</category><pubDate>Tue, 26 May 2026 00:00:00 GMT</pubDate><dc:creator>Lukas Bindreiter</dc:creator></item><item><title>Gearing up for SatCamp 25</title><link>https://tilebox.com/dispatch/news/satcamp-25</link><guid isPermaLink="true">https://tilebox.com/dispatch/news/satcamp-25</guid><description>A cloud-free Sentinel-2 mosaic of Boulder, Colorado created for SatCamp 25, exploring how satellite imagery connects global perspectives to local places.</description><content:encoded>&lt;p&gt;&lt;img src=&quot;https://tilebox.com/images/publication/695692d76ef1c289.webp&quot; alt=&quot;Gearing up for SatCamp 25&quot;&gt;&lt;/p&gt;&lt;p&gt;As the SatCamp community gathers in Boulder, Colorado for its 3rd edition, the focus turns to some of the most urgent themes in space and technology: Innovation and Disruption, Climate Change Mitigation, and Social Cohesion. These themes frame the conversations that matter most today, highlighting both the challenges we face and the opportunities to shape a more resilient, connected future.&lt;/p&gt;
&lt;p&gt;To mark the occasion, we created a Sentinel-2 Mosaic centered on the mountains surrounding Boulder, the backdrop for this unique event. From orbit, the scene is a reminder of how perspective shifts with scale, connecting the global view from space to the very local place where this community comes together to share ideas.&lt;/p&gt;
&lt;p&gt;This mosaic builds on an earlier visualization created over &lt;a href=&quot;https://tilebox.com/dispatch/articles/cloud-free-mosaic&quot;&gt;Ireland&lt;/a&gt;, where we explored the process behind assembling a cloud-free view. Taken together, these mosaics show how satellite imagery, shaped with context, can link the broad perspective of orbit to the specific places where people gather. For SatCamp, that connection offers a reminder of how a global vantage point can frame conversations around innovation, climate, and community, or even help check the hiking routes that wind through the mountains around Boulder.&lt;/p&gt;
&lt;p&gt;Source: Sentinel-2 imagery from September 2025.&lt;/p&gt;
&lt;p&gt;Want to go deeper into the workflow? &lt;a href=&quot;https://tilebox.com/dispatch/articles/cloud-free-mosaic&quot;&gt;Read the full Ireland case study.&lt;/a&gt;&lt;/p&gt;</content:encoded><media:content url="https://tilebox.com/images/publication/695692d76ef1c289.webp" medium="image"><media:title>Gearing up for SatCamp 25</media:title></media:content><media:thumbnail url="https://tilebox.com/images/publication/695692d76ef1c289.webp"/><category>news</category><pubDate>Tue, 23 Sep 2025 00:00:00 GMT</pubDate><dc:creator>Lukas Bindreiter</dc:creator></item></channel></rss>