Awareness Tenure
- CURIE:
gmeow:AwarenessTenure - IRI: https://blackcatinformatics.ca/gmeow/AwarenessTenure
- Category: class
- Defined by:
gmeow:slices/awareness - Box roles: TBox role (What is this?)
A reified situation of an agent BEING IN a given awareness mode OVER a bounded interval — a sleep episode, a focus or meditation session, a machine serving window or training run. Specialises gmeow:TimeScopedRelation (temporal slice): the awareness state holds only across the span it scopes. It carries the experiencer (gmeow:awarenessSubject → gmeow:Agent), the state (gmeow:awarenessMode), the span (gmeow:duringInterval → gmeow:TimeInterval), and the optional arousal (gmeow:awarenessLevel and/or gmeow:awarenessScalar). Tenures may nest — a gmeow:modeREM sub-tenure within a night's gmeow:modeAsleep tenure.
Structure
Subclass of: gmeow:TimeScopedRelation
Practical Pattern
Use gmeow:AwarenessTenure as a specialized kind of gmeow:TimeScopedRelation. Add statement metadata or a standpoint when the assertion needs provenance, confidence, or vantage.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Ai Inference Regime
- Source:
slices/core/awareness/examples/ai-inference-regime.ttl - Examples catalog: open in catalog#example-slices-core-awareness-examples-ai-inference-regime
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/awareness/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example — an AI agent's operational-state regime, the Principle-5 bridge.
# The same gmeow:AwarenessTenure machinery that records a human's sleep records a
# machine's operational state: a live serving window (gmeow:modeOnlineInference),
# a weight-updating training run (gmeow:modeTraining), and a free-running generative
# pass (gmeow:modeSampling), each scoped to a temporal interval and each carrying a
# continuous gmeow:awarenessScalar (a temperature-like regime value). These machine
# modes are SIBLINGS of the human modes in ONE open vocabulary, bridged to human
# waking / dreaming / mind-wandering by ANALOGY, NOT by equivalence (no owl:sameAs,
# no owl:equivalentClass) — substrate-specific realisations of the awareness faculty.
# --- A live serving window — online inference, the machine analogue of waking. A
# claim formed within this tenure can record that it was formed during live
# serving (operational-state provenance for the agent-memory flagship).
ex:servingTenure a gmeow:AwarenessTenure ;
rdfs:label "a live serving window"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeOnlineInference ;
gmeow:awarenessScalar 0.7 ;
gmeow:duringInterval ex:requestInterval .
Sleep Episode
- Source:
slices/core/awareness/examples/sleep-episode.ttl - Examples catalog: open in catalog#example-slices-core-awareness-examples-sleep-episode
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/awareness/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example — a human night's sleep. An agent's awareness state over a night
# is reified as a gmeow:AwarenessTenure (gmeow:modeAsleep, gmeow:levelUnresponsive)
# scoped to a temporal interval. A nested REM sub-tenure (gmeow:modeREM /
# gmeow:modeDreaming) sits within it, and a still-finer gmeow:modeLucidDreaming
# moment marks the point at which metacognition comes ONLINE during the dream —
# the lucidity seam, documented BY REFERENCE in the prose comment, with NO triple
# asserted into the metacognition namespace. No truth or reality bit anywhere:
# the dream STATE is the gmeow:modeDreaming awareness value, and the dreamt
# content's source would be a reality-monitoring matter (gmeow:contentOrigin,
# imagination slice, by reference), never a flag here.
# --- The night-long sleep tenure: an agent in a mode over an interval.
ex:lillithSleep a gmeow:AwarenessTenure ;
rdfs:label "Lillith's night of sleep"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeAsleep ;
gmeow:awarenessLevel gmeow:levelUnresponsive ;
gmeow:duringInterval ex:nightInterval .
Common Companion Terms
Usage Advice
Use when
- Use to reify an agent's awareness state over a bounded span — a sleep episode, a focus or meditation session, a serving window or training run — whenever that span, its subject, its level, or its provenance must be queryable; the carrier of AI operational-state provenance for the agent-memory flagship.
Avoid when
- Avoid for a timeless or lightweight state tag (put
gmeow:awarenessModedirectly on the agent or process), and avoid modelling the dreaming/processing ACT here — that is agmeow:processDreaming/ model invocation (mentation, by reference); the tenure is the state-over-time.
How to use
- Instantiate it carrying
gmeow:awarenessSubject(thegmeow:Agent),gmeow:awarenessMode(the state), andgmeow:duringInterval(agmeow:TimeIntervalwhose bounds beargmeow:hasTemporalFrame, P11); addgmeow:awarenessLeveland/orgmeow:awarenessScalarfor arousal, and nest finer sub-tenures (agmeow:modeREMepisode within a night's sleep) as their owngmeow:AwarenessTenureindividuals.
Scope notes
- Reify when the state must be queryable as a thing (its span, subject, level, or provenance); for a bare timeless or lightweight tag, put
gmeow:awarenessModedirectly on the agent or process instead. The tenure is a situation (gufo:SituationType), not a process — the dreaming/processing ACT is agmeow:processDreaming/ model-invocation (mentation, by reference), and the tenure is the STATE-OVER-TIME it occurs within.
Examples
- ex:lillithSleep a
gmeow:AwarenessTenure;gmeow:awarenessSubjectex:lillith;gmeow:awarenessModegmeow:modeAsleep;gmeow:duringIntervalex:nightInterval.