NASA FIRMS Active Fire
Use the CLI-owned nasa-firms.active-fire capability. This Skill supplies
intent routing and result-use boundaries only; the CLI owns source discovery,
input/output schemas, MAP_KEY injection, chunking, limits, validation, and
receipts.
Before running
- Read
references/tiangong-data-requirement.json.
- Use the caller- or workspace-resolved stable CLI. The requirement declares
compatible capability and operation contract majors; it does not select a
package build.
- Run
data describe with that same CLI. Continue only when the capability
ID and required contract majors match, and copy the exact current
capability/operation versions from that response into the run request.
- Ensure
NASA_FIRMS_MAP_KEY is present in the CLI process environment, then
run the default static doctor. Never place the key in argv, the request JSON,
a Skill-local config file, logs, or output.
tiangong-ai data describe nasa-firms.active-fire --json
tiangong-ai data doctor nasa-firms.active-fire --json
Use the returned Discovery Metadata to confirm current source availability,
coverage, granularity, NRT or Standard Processing semantics, citation guidance,
quota, provides, and doesNotProvide. Do not substitute facts remembered
from an older Skill revision. A blocked static doctor means the required
logical credential is unavailable; stop instead of bypassing the CLI.
Prepare the request
Build a tiangong.data.run-request.v1 envelope and replace the two version
placeholders with the exact versions from the same data describe response. Use one source and one known WGS84
bounding box that does not cross the antimeridian. The inclusive UTC date
window may contain at most 31 dates; the CLI performs provider-compliant
five-day chunking and enforces transaction and record limits.
{
"schemaVersion": "tiangong.data.run-request.v1",
"capabilityId": "nasa-firms.active-fire",
"capabilityVersion": "<describe.manifest.capabilityVersion>",
"operationId": "fetch-area",
"operationVersion": "<describe.manifest.operations[0].operationVersion>",
"input": {
"source": "VIIRS_NOAA20_NRT",
"boundingBox": {
"west": 115.8,
"south": -8.9,
"east": 116.3,
"north": -8.3
},
"startDate": "2026-03-01",
"endDate": "2026-03-07",
"checkAvailability": true
}
}
Use the operation input schema returned by the same data describe response for the current
source enum and limits. Select NRT only when timeliness is material and its
provisional status can be retained; select the matching Standard Processing
source for consistent historical work when available. Set
checkAvailability when the source's historical window is uncertain, accepting
the extra provider request. Do not silently widen the box, switch sources,
geocode place names, cross the antimeridian, or fan out across areas.
Run
tiangong-ai data run nasa-firms.active-fire fetch-area \
--input /absolute/path/to/request.json --json
The command emits a tiangong.data.run-result.v1 envelope. Preserve its
contract, warnings, errors, and receipt with data when handing the
result to another workflow.
Result boundaries
- Treat each record as a satellite thermal-anomaly or active-fire detection,
not a fire perimeter, burned-area estimate, incident identity, or proof of a
wildfire or ignition cause.
- Preserve source, acquisition time, satellite/instrument, confidence,
day/night, version, and sensor measurements with every downstream use.
- Preserve NRT provisional warnings and the exact selected dataset in citations.
Do not merge NRT and Standard Processing records without an explicit method.
- Treat
partial as incomplete chunk or row coverage. Report missing chunks
and invalid paths together with the usable detections.
- Preserve duplicate/inconsistent-header and row-validation issues. Rows with
invalid required coordinates or acquisition timestamps are omitted, while a
duplicate optional header or malformed optional measurement does not discard
an otherwise usable detection.
- Treat
blocked as no usable business result. Surface credential, request,
availability, endpoint, quota, or provider errors instead of bypassing limits
or switching endpoints.
- Report record-limit truncation and transaction estimates; a truncated result
is not exhaustive evidence of hotspot absence or presence.
- Confirm operationally important detections with incident, perimeter, imagery,
or local-authority sources. This capability supplies no alert, evacuation,
severity, containment, smoke, emissions, weather, or hydrology decision.
- Recurring monitoring, multi-area or multi-source fan-out, duplicate-event
resolution, statistical inference, and research evidence admission belong to
the caller or Auto Research, not this atomic Skill.
- This execution contract does not expose the source script's standalone
MAP_KEY-status probe, arbitrary sensor-specific raw columns, or raw JSON/log
artifact output. Use the static doctor plus an explicit bounded operation;
add any future live quota diagnostic as a separately reviewed CLI contract.
Reference
references/tiangong-data-requirement.json: stable capability requirement; it is not a package lock.
1---2name: nasa-firms-fire-fetch3description: Retrieve bounded NASA FIRMS satellite active-fire and thermal-anomaly point detections through the Tiangong CLI for one reviewed source, known bounding box, and short UTC date window. Use for hotspot screening or candidate fire-location context; do not use for fire perimeters, burned area, confirmed wildfire incidents, cause attribution, emergency alerts, recurring monitoring, or multi-source fusion.4---5
6# NASA FIRMS Active Fire
7
8Use the CLI-owned `nasa-firms.active-fire` capability. This Skill supplies
9intent routing and result-use boundaries only; the CLI owns source discovery,
10input/output schemas, MAP_KEY injection, chunking, limits, validation, and
11receipts.
12
13## Before running
14
151. Read `references/tiangong-data-requirement.json`.
162. Use the caller- or workspace-resolved stable CLI. The requirement declares
17 compatible capability and operation contract majors; it does not select a
18 package build.
193. Run `data describe` with that same CLI. Continue only when the capability
20 ID and required contract majors match, and copy the exact current
21 capability/operation versions from that response into the run request.
224. Ensure `NASA_FIRMS_MAP_KEY` is present in the CLI process environment, then
23 run the default static doctor. Never place the key in argv, the request JSON,
24 a Skill-local config file, logs, or output.
25
26```bash
27tiangong-ai data describe nasa-firms.active-fire --json
28tiangong-ai data doctor nasa-firms.active-fire --json
29```
30
31Use the returned Discovery Metadata to confirm current source availability,
32coverage, granularity, NRT or Standard Processing semantics, citation guidance,
33quota, `provides`, and `doesNotProvide`. Do not substitute facts remembered
34from an older Skill revision. A blocked static doctor means the required
35logical credential is unavailable; stop instead of bypassing the CLI.
36
37## Prepare the request
38
39Build a `tiangong.data.run-request.v1` envelope and replace the two version
40placeholders with the exact versions from the same `data describe` response. Use one source and one known WGS84
41bounding box that does not cross the antimeridian. The inclusive UTC date
42window may contain at most 31 dates; the CLI performs provider-compliant
43five-day chunking and enforces transaction and record limits.
44
45```json
46{
47 "schemaVersion": "tiangong.data.run-request.v1",
48 "capabilityId": "nasa-firms.active-fire",
49 "capabilityVersion": "<describe.manifest.capabilityVersion>",
50 "operationId": "fetch-area",
51 "operationVersion": "<describe.manifest.operations[0].operationVersion>",
52 "input": {
53 "source": "VIIRS_NOAA20_NRT",
54 "boundingBox": {
55 "west": 115.8,
56 "south": -8.9,
57 "east": 116.3,
58 "north": -8.3
59 },
60 "startDate": "2026-03-01",
61 "endDate": "2026-03-07",
62 "checkAvailability": true
63 }
64}
65```
66
67Use the operation input schema returned by the same `data describe` response for the current
68source enum and limits. Select NRT only when timeliness is material and its
69provisional status can be retained; select the matching Standard Processing
70source for consistent historical work when available. Set
71`checkAvailability` when the source's historical window is uncertain, accepting
72the extra provider request. Do not silently widen the box, switch sources,
73geocode place names, cross the antimeridian, or fan out across areas.
74
75## Run
76
77```bash
78tiangong-ai data run nasa-firms.active-fire fetch-area \
79 --input /absolute/path/to/request.json --json
80```
81
82The command emits a `tiangong.data.run-result.v1` envelope. Preserve its
83`contract`, `warnings`, `errors`, and `receipt` with `data` when handing the
84result to another workflow.
85
86## Result boundaries
87
88- Treat each record as a satellite thermal-anomaly or active-fire detection,
89 not a fire perimeter, burned-area estimate, incident identity, or proof of a
90 wildfire or ignition cause.
91- Preserve source, acquisition time, satellite/instrument, confidence,
92 day/night, version, and sensor measurements with every downstream use.
93- Preserve NRT provisional warnings and the exact selected dataset in citations.
94 Do not merge NRT and Standard Processing records without an explicit method.
95- Treat `partial` as incomplete chunk or row coverage. Report missing chunks
96 and invalid paths together with the usable detections.
97- Preserve duplicate/inconsistent-header and row-validation issues. Rows with
98 invalid required coordinates or acquisition timestamps are omitted, while a
99 duplicate optional header or malformed optional measurement does not discard
100 an otherwise usable detection.
101- Treat `blocked` as no usable business result. Surface credential, request,
102 availability, endpoint, quota, or provider errors instead of bypassing limits
103 or switching endpoints.
104- Report record-limit truncation and transaction estimates; a truncated result
105 is not exhaustive evidence of hotspot absence or presence.
106- Confirm operationally important detections with incident, perimeter, imagery,
107 or local-authority sources. This capability supplies no alert, evacuation,
108 severity, containment, smoke, emissions, weather, or hydrology decision.
109- Recurring monitoring, multi-area or multi-source fan-out, duplicate-event
110 resolution, statistical inference, and research evidence admission belong to
111 the caller or Auto Research, not this atomic Skill.
112- This execution contract does not expose the source script's standalone
113 MAP_KEY-status probe, arbitrary sensor-specific raw columns, or raw JSON/log
114 artifact output. Use the static doctor plus an explicit bounded operation;
115 add any future live quota diagnostic as a separately reviewed CLI contract.
116
117## Reference
118
119- `references/tiangong-data-requirement.json`: stable capability requirement; it is not a package lock.