Skip to content

Appendix: Claude Tag and the Context Graph

Summary

Anthropic's Claude Tag lets a person pull Claude into a workspace conversation simply by mentioning it — @Claude — where it joins as a working team member that can break a request into stages and carry it out. Launched first on Slack, the feature points toward a future where Claude can be tagged across every enterprise chat surface. This appendix analyzes, step by step, what has to happen behind that mention for the result to be both accurate and token-efficient, and shows why an enterprise knowledge graph with millisecond, scale-out query performance is the component that makes it work.


One keystroke, the whole enterprise behind it.

Nexus waves welcome Welcome to the appendix where everything in this book gets put to a real-world test. Someone types @Claude in a chat thread and expects a grounded answer in seconds. Where does that answer come from? Let's trace the why!

Introduction

A new capability changes the shape of a problem. Claude Tag is one of those changes. Anthropic describes it plainly: "Claude can join as a team member. Grant Claude access to selected channels, and connect it to whichever tools, data—and even codebases—you choose." Anyone in a channel can tag @Claude and delegate a task, and Claude will "break its task down into stages and then work through them in turn, using the tools it has access to" — sometimes answering in seconds, sometimes "pursuing a project autonomously over hours or days." It launched first on Slack, in beta for Enterprise and Team customers, running on Claude Opus 4.8.

Two design choices in the announcement matter enormously for this book. First, Claude learns: it "builds more context about the work" so it "doesn't need to explain things from scratch over and over," and it can draw on "other Slack channels and data sources." Second, administrators hold the reins: they "specify which tools and information the model should have access to, in which channels," run "separate Claude identities for different uses" with isolated memory scopes, "set limits for token spend," and "view a log of everything that @Claude has done." A persistent, learning agent governed by per-channel permissions and an explicit token budget is, almost line for line, the system this book has been describing.

This appendix takes that real feature and extends it along two axes the book cares about — both stated here as deliberate assumptions, not current fact. First, that tagging eventually reaches every enterprise chat surface: Slack today, and Microsoft Teams, Messenger, and whatever comes next tomorrow. Second, that the organization has done the work this book argues for, placing all of its knowledge — down to individual employees' personal notes — into an enterprise knowledge graph. Neither is true at launch. Both are where the architecture points.

Under those assumptions, the tag becomes the single most important entry point into enterprise AI — the place where a human, mid-conversation, hands Claude a task. And it is where the central problem of this book shows up in its purest form: the request arrives with crystal-clear intent and almost no context. Closing that gap, in milliseconds, with the fewest possible tokens, is what a context graph is for. (Source: Anthropic, Introducing Claude Tag.)

The Tag Is a Pointer Into the Knowledge Graph

Start with what a tag actually contains. When someone writes @Claude — can we give Acme the Q4 discount again? the message carries a precise question, the identity of the person asking, the thread it lives in, and the list of people in that thread. What it does not carry is everything needed to answer well: who Acme is as a customer, the current pricing policy and its version, the three times this discount was approved before, who approved them, and whether finance later flagged any of those approvals as a precedent it did not want repeated.

In other words, a tag is a pointer. It points at entities, decisions, and history that live elsewhere in the organization. The text in the thread is the address; the enterprise knowledge graph is the memory that the address dereferences to. This is the same lesson from Chapter 8: The Context Problem — the model is capable, but only as grounded as the context it is handed.

A tag is high-signal and low-context — by design.

Nexus thinking The tag is the highest-signal, lowest-context event in enterprise software. It tells you exactly what someone wants and almost nothing they need to get it. That asymmetry is the whole opportunity: a small, precise pointer that a graph can expand into precisely the right context — and nothing more.

The Tag-to-Answer Pipeline

The work between the tag and the reply is a pipeline of six steps. Most of it is retrieval, and most of the retrieval is a graph traversal. We will walk each step, then return to the two properties that decide whether the pipeline succeeds: latency and token efficiency.

Step 1: Capture the Tag Event

Each chat surface fires an event when Claude is mentioned — Slack today, others as the feature expands. The shapes differ — one platform delivers a mention through an events API, another through a bot-activity payload, a third through a messaging webhook — but the meaningful content is the same everywhere: the message text, the author's identity, the thread or channel, and the participants. A thin adapter per tool normalizes these into a single canonical tag event. Everything downstream is tool-agnostic, because everything downstream targets the knowledge graph rather than the chat tool. This is the architectural seam that lets one retrieval system serve every chat surface at once.

Step 2: Resolve Entities and Intent

This is the step that quietly decides the quality of everything after it. The system reads the message — and a small window of recent thread history — and extracts two things: the entities the conversation is about and the intent of the question. "Acme" must resolve to a canonical customer node, not a string. "The Q4 discount" must resolve to a pricing-exception decision type. "Again" must be recognized as a signal that precedents exist. The asker, too, resolves to an identity with a specific permission set.

Resolving names and phrases to canonical node identifiers is exactly the job the enterprise knowledge graph was built for, drawing on the canonical entity registry from Chapter 4 and Chapter 6. Get this step right and the traversal that follows lands on the correct subgraph. Get it wrong and every later step is precise retrieval of the wrong thing.

Entity resolution is the hard part — and it is solvable.

Nexus encouraging If this step feels like the load-bearing wall, that is because it is. The good news: resolving messy human language to canonical graph nodes is a well-studied problem, and the graph itself is the tool that solves it. Aliases, abbreviations, and "the usual customer" all become edges and properties the resolver can lean on.

Step 3: Extract the Right Subgraph

With canonical entity IDs in hand, the system issues a parameterized, multi-hop traversal — the context graph read path from Chapter 9. Starting at the Acme customer node, it follows edges to the relevant decision traces, then on to the actors who approved them, the version-correct policies that governed them, and the precedents they cited. The traversal returns a compact subgraph: the slice of organizational memory that this specific question needs.

The art here is restraint. The graph could return thousands of connected nodes; the answer needs perhaps a dozen. A good extraction is ruthless about relevance, because every node it keeps will cost tokens in the next step. The simulation below makes the selection visible — the full enterprise graph on the left, and on the right the small subgraph that actually travels onward to the model.

Subgraph extraction for LLM context assembly — the full graph (left) versus the compact, relevant slice that is retrieved (right). Open the MicroSim.

Step 4: Budget and Assemble the Context

The retrieved subgraph is still a graph. The model needs prose. In this step the system ranks the retrieved nodes by relevance — recency, how often a precedent has been cited, similarity to the question, and how closely each decision matches the entity at hand — and then serializes the top results into a dense, structured block of text. That block is fitted to a context budget: a fixed allocation of tokens that must also leave room for the system prompt, the question, and the model's answer. We analyze that budget in detail two sections from now.

Step 5: Generate the Grounded Answer

Claude now reasons over a small, high-signal context block and replies in the thread. Because the context was assembled from identifiable graph nodes, the answer can cite them — "approved twice in the last year; the Q2 approval carried a no-recurrence condition" — so the humans in the thread can verify the reasoning rather than trust it blindly. Grounded, checkable answers are what turn a tag from a novelty into something a team relies on.

Step 6: Write the Conversation Back

The pipeline does not end at the reply. The conversation that just happened is a decision in the making, and the write path can capture it as a new decision trace — anchored to the same Acme entity, with the thread participants as actors and the thread itself as provenance. This is the flywheel, and it is important enough that it gets its own section below. For now, note only that step 6 feeds step 3 of every future tag.

The diagram-free version of the whole pipeline fits in a single table. Prose first, then the summary: each row is one step, what it produces, and which system does the heavy lifting.

Step What happens Primary system
1. Capture Normalize the mention into a canonical tag event Chat-tool adapter
2. Resolve Map names and intent to canonical node IDs and a permission set Knowledge graph + resolver
3. Extract Traverse from entities to traces, actors, policies, precedents Scale-out graph database
4. Assemble Rank, compress, and serialize the subgraph to fit the token budget Retrieval / context layer
5. Generate Reason over the compact context and reply with citations Claude
6. Write back Record the conversation as a new decision trace Context graph write path

From One Answer to an Autonomous Project

The pipeline above describes a single turn: one tag, one reply. But the announcement is explicit that Claude Tag is a team member, not a search box. Tag it with a larger request and it will "break its task down into stages and then work through them in turn," even "[scheduling] tasks for itself, pursuing a project autonomously over hours or days." That changes the analysis in one important way: the six-step pipeline is not run once — it runs at the retrieval step of every iteration of an agent loop, the structure from Chapter 16: AI Agent Architecture.

This is where the announcement's emphasis on learning lands directly on this book's thesis. An agent that "builds more context about the work" needs somewhere to put that context. The product gives each agent "isolated memory scopes"; the enterprise knowledge graph is the ideal substrate for those scopes, because graph memory is both queryable — the agent can ask precise questions of its own past — and shareable under access control, so what one agent learns can inform another when policy allows. The diagram below shows that memory architecture and the write-back loop that keeps it current.

Agent memory architecture and the write-back loop. Open the MicroSim. The book also models how much autonomy to grant such an agent in the Graduated Autonomy Model — directly relevant to a tag that can act over days.

Two consequences follow, and they set up the next two sections. Because the loop may run dozens of times, token efficiency compounds: a retrieval step that wastes thirty thousand tokens is annoying once and ruinous fifty times over. And because much of the work is asynchronous, latency matters differently for a quick reply than for a multi-hour project. We take each in turn.

The Latency Budget: Why "Milliseconds" Is a Requirement

Chat is synchronous and social. When you tag a human colleague, you expect a reply in seconds. Tag Claude in front of your team and the same expectation holds — a two-second pause feels natural, a ten-second pause feels broken, and a thirty-second pause means people stop tagging. The tag turns query latency from an engineering nicety into a hard product requirement.

That requirement bites hardest on the synchronous tags — the quick questions a team fires off mid-discussion and waits on. For the asynchronous projects Claude pursues over hours or days, a few seconds of retrieval per step is invisible to the human. But even there, per-step latency sets the throughput of the agent loop: shave each iteration's retrieval from three seconds to fifty milliseconds and the agent completes far more reasoning steps in the same wall-clock hour. Fast retrieval is a user-experience requirement for quick tags and a productivity multiplier for long-running ones.

Walk the budget and a clear picture emerges. The numbers below are illustrative, but their relative sizes are the point. Generation dominates what the user feels; everything else has to disappear into the gaps.

Step Operation Typical latency On the critical path?
1 Tag event capture and transport 100–300 ms Yes
2 Entity and intent resolution 50–200 ms Yes
3 Subgraph extraction (scale-out graph) 5–50 ms Yes
4 Rank and assemble context 50–200 ms Yes
5 LLM generation 1–4 s Yes — dominant
6 Decision-trace write-back asynchronous No

The entire retrieval path — steps 2 through 4 — adds up to well under half a second when the graph answers in milliseconds. That is the scale-out property this book keeps returning to (Chapter 5): a native graph database can follow a multi-hop path across an enormous graph in single-digit milliseconds, because traversal is a pointer-chase, not a pile of joins.

Now swap that property out. Suppose the context were instead gathered by querying the live source systems at tag-time — federating across CRM, ERP, and a ticketing system the moment someone hits send. Step 3 stops being 5–50 milliseconds and becomes seconds, because each source is queried over the network, under load, with its own latency. The retrieval path now rivals generation itself, and the reply lands after the conversation has moved on.

Materialize ahead of time; traverse at tag-time.

Nexus offering a tip The fix is to do the expensive work before anyone tags. Continuously ingest source systems into the knowledge graph — via change-data-capture and event streams, the pipelines from Chapter 21 — so that at tag-time the path is a single fast traversal of one substrate. The tag's latency budget is the strongest argument in this book for materializing knowledge into the graph instead of federating live.

Token Efficiency: The Tag Makes the Book's Thesis Unavoidable

Here is where the tag and this book's core thesis meet head-on. There is an obvious, lazy way to give Claude context for a tag: dump the channel scrollback into the context window and let the model sort it out. It is easy to build, and it is wrong on every axis that matters.

This is not an abstract concern in Claude Tag — it is a dial on the admin panel. Administrators "set limits for token spend" per agent, which makes token efficiency the difference between an agent that stays useful all day and one that hits its budget cap by mid-morning. Every token the retrieval layer wastes on noise is a token the agent cannot spend on reasoning. And in the agentic loop from the previous section, that waste multiplies by the number of iterations.

A busy channel's recent history can run to tens of thousands of tokens, and almost all of it is irrelevant to the question — other people's tangents, yesterday's standup, a lunch poll. It is also stale and incomplete: the actual contract terms, the policy version in force, and the prior approvals do not live in the chat at all. They live in systems. So the lazy approach pays a fortune in tokens to deliver noise, and still misses the facts. Large, noisy contexts also degrade answer quality — the model's attention is diluted across thousands of irrelevant tokens, the well-documented "needle in a haystack" failure.

The context-graph approach inverts this. It spends a few hundred tokens of retrieval effort to deliver a few hundred tokens of pure signal. The contrast is stark enough to tabulate. The prose has made the case; the table reinforces the magnitudes.

Naive "dump the thread" Context-graph retrieval
Channel scrollback ~40,000 tokens 0 (not needed)
Resolved entity summaries ~300 tokens
Top decision traces (3–5) buried, if present ~800 tokens
Version-correct policy excerpt usually absent ~200 tokens
Authorized personal notes absent ~200 tokens
Total context delivered ~40,000 tokens of noise ~1,500 tokens of signal
Answer quality low — facts missing, attention diluted high — exact facts, cited
Per-tag cost and latency high low

Roughly twenty times fewer tokens, and a better answer — not a trade-off between cost and quality but a case where the cheap path is also the good path. That is the whole argument of this book, compressed into one interaction. The simulation below lets you feel the constraint directly: a fixed context window, and a set of components competing for it. Push the retrieved-context slice up and watch what you must surrender elsewhere.

The context window budget visualizer — allocate a fixed token budget across components and observe the trade-offs. Open the MicroSim. See Chapter 14: Integrating LLMs for the full treatment of context budgeting.

One Tag, Every Chat Tool: The Graph as the Unifying Substrate

Today Claude Tag lives on Slack, and even there the integration story is already real: admins "connect it to whichever tools, data—and even codebases—you choose." The book's contribution is to name the optimal thing to connect — a context graph — and to look one step ahead, to when the same tag works on Teams, Messenger, and the rest. That end state hides a real architectural choice. Naively, supporting many chat tools and many source systems means building a connector for every pairing: Slack-to-CRM, Teams-to-CRM, Slack-to-ERP, and so on. With N chat tools and M source systems, that is N×M integrations, and it grows worse with every tool the company adopts.

The enterprise knowledge graph collapses that explosion. Each chat tool connects once, to the graph. Each source system connects once, to the graph. The result is N+M integrations against a single semantic substrate — the hub-and-spoke pattern this book favors over point-to-point sprawl. The chat tool becomes nothing more than the surface where the conversation happens; the graph is where the knowledge lives. Tag Claude in Slack or in Teams and the entity resolution and subgraph extraction are identical, because both hit the same hub.

To make the (anticipated) "works everywhere" claim concrete without pretending the tools are identical, the table maps each surface to its mention mechanism — Slack live today, the others on the trajectory. The point of the table is the last column: everything converges on one canonical event.

Chat tool Where you tag Delivery mechanism (illustrative) Normalized to
Slack (live today) @Claude in a channel or thread Events API mention Canonical tag event
Microsoft Teams (anticipated) @Claude in a chat or channel Bot-activity payload Canonical tag event
Messenger / Workplace (anticipated) @Claude in a conversation Messaging webhook Canonical tag event
Future tool @-mention or slash command Adapter Canonical tag event

Under the hood, that convergence is a federation problem: one question, decomposed against many sources. The difference in the graph approach is when the decomposition happens — at ingestion time, not at tag-time. The flow below shows a federation engine splitting one business question across separate systems and reassembling the answer; picture the graph doing that work continuously in the background so the tag-time path stays a single fast traversal.

Query federation flow — one business question decomposed across multiple source systems and rejoined. Open the MicroSim.

Personal Notes Become Organizational Memory: The Integrated PKG

The boldest assumption in this analysis is that all enterprise knowledge lives in the graph — including the personal note-taking tools where so much real context actually hides. This is the last mile, and it is where the tag earns its keep.

The most decisive context for a decision is often the least formal. "I spoke with Acme's CFO last week; they are price-sensitive right now because of a budget freeze" is the kind of sentence that changes an answer entirely — and it lives in one person's notes, invisible to every system of record. When personal notes are nodes in the graph, with their authorship and relationships intact, a tag can surface that sentence at the moment it matters. The knowledge that used to walk out the door when an employee left becomes durable, queryable organizational memory.

This last mile has a name and a body of work behind it. A personal knowledge graph (PKG) is a graph of a single person's own knowledge — their notes, contacts, projects, and half-formed ideas — and it is the structured successor to today's note-taking tools. Connect a PKG to the organization's graph and it becomes an integrated personal knowledge graph (IPKG): individual knowledge made available to enterprise workflows under governance. The integration is treated in depth in the companion chapter Integrating Personal Knowledge Graphs into the Enterprise, which organizes the work into four parts — background, challenges, steps, and security. An IPKG is precisely what a tag dereferences when the decisive context lives in someone's private graph rather than in a system of record.

The challenges that chapter raises are the same ones the tag pipeline must solve. An individual's notes call the customer "Acme," "the Acme folks," or just "them"; the enterprise graph calls it ENT-00441872. Reconciling those informal personal entities with canonical enterprise ones is exactly the entity-resolution step from earlier in this appendix — now run against private data. And the line between what an IPKG shares and what it keeps private is not a detail to bolt on at the end; it is the load-bearing design decision, which is why that chapter gives security a part of its own.

The chapter frames the entire effort with one hypothesis: "IPKGs will allow users of PKGs to create more valuable and helpful knowledge than if note-taking is done with siloed tools." A tag is where that value is finally collected — the moment siloed personal knowledge is put to work in a shared decision. But the chapter is honest about the tension underneath: personal capture wants to be free-form — no rules, fast, low structure — while enterprise reuse wants structure — typed, queryable, consistent. Its bridge is light-touch typing at capture time, an instance of Jim Hendler's "a little semantics goes a long way," where an editor's autocomplete turns [[ into a link to an existing concept, @ into a reference to a colleague, and a glossary prefix like g: into an approved business term. That is entity resolution performed as the note is written — assistance the chapter says must land in roughly 100 milliseconds to feel like help rather than lag, the very threshold the tag's own retrieval has to meet. Notes captured that way already point at canonical nodes, so the tag's retrieval-time resolution from Step 2 starts half-solved. An IPKG does not merely store personal knowledge; it pre-links it to the enterprise graph.

That power comes with an obligation, and it is not optional.

Two permission models meet at the tag — reconcile them.

Nexus raising a careful warning Claude Tag governs access at the channel level — admins choose which tools and data each Claude identity may reach, with isolated memory scopes. Personal notes are governed at the individual level. When one graph holds both, retrieval must enforce vertex-level role-based access control (RBAC) — the access model from Chapter 9 and Chapter 3, and the one the PKG chapter calls essential for high-stakes graphs — so a channel-scoped agent never surfaces a note its tagger could not see. Bind permissions to roles and named groups, never to individuals, or the rules collapse the first time someone changes teams. A tag must never become the side channel that leaks restricted context into a public thread.

The Flywheel: Every Tag Writes Back

Return to step 6, because it is what makes the whole system improve over time. When the team acts on Claude's answer, the resolved conversation is recorded as a new decision trace — the same structure defined in Chapter 11: what was decided, by whom, when, citing which precedents, under which policy. It is anchored to the same entities the tag resolved, so it is instantly discoverable by the next traversal.

This closes a loop that compounds. Today's tagged conversation becomes tomorrow's retrieved precedent. The third time someone asks about Acme's Q4 discount, the answer is grounded partly in the first two times they asked Claude — captured automatically, at the moment of decision, instead of evaporating into chat history. Each tag both reads from and writes to the graph, so the organization's memory grows denser and more useful with use rather than decaying. A graph that gets smarter every time it is consulted is the opposite of tribal knowledge that thins with every resignation.

There is a guardrail here too: write-back must be authenticated and bounded, or a manipulated conversation could poison the memory other agents rely on. The security treatment in Chapter 22 — agent authentication, sandboxed writes, and protection against prompt injection — applies directly to the tag write path. Capture is a feature; unverified capture is a liability.

The product already supplies the scaffolding. "Separate Claude identities for different uses" give each agent an authenticatable principal — the precondition for trustworthy write-back. And the admin's ability to "view a log of everything that @Claude has done" is, in this book's vocabulary, a decision-trace audit trail by another name: the Chapter 18 compliance story arriving as a shipped product feature.

Writing back is also a migration, and the PKG chapter flags precisely what makes migration hard. When knowledge moves from a private graph into a shared one, links that worked in private can break, because the shared graph may have no access to the private concepts they pointed at. The chapter even anticipates the tag's write-back as a future capability — "Publish this subgraph to the corporate ontology server for review" — while warning that the private-to-public merge has "no easy answers." A tag's write-back should therefore stage new traces for review rather than silently merge them, and flag broken links rather than fabricate their targets. Organizational memory is only ever as trustworthy as the weakest write that entered it.

What This Means for Context Architects

The tag feature is a small interface over a large idea. A person mentions Claude, and in the seconds that follow, the organization's knowledge has to find its way into a context window — accurately, cheaply, and fast enough to feel like a conversation. Strip the feature down and it is a demand for exactly the capability this book has been building toward.

By the end of this appendix, you should be able to:

  • Explain why a tag is a high-signal, low-context pointer, and why the enterprise knowledge graph is what that pointer dereferences to
  • Walk the six-step tag-to-answer pipeline from event capture to decision-trace write-back, and name the system responsible for each step
  • Explain why Claude Tag's agentic loop — breaking a task into stages and running autonomously over hours or days — multiplies the value of fast, compact retrieval at every iteration
  • Argue from the latency budget why millisecond, scale-out graph traversal is a product requirement for synchronous chat — and why materializing knowledge into the graph beats federating live at tag-time
  • Quantify the token-efficiency gap between dumping channel scrollback and extracting a compact subgraph, and explain why the cheap path is also the higher-quality one
  • Describe how one graph turns N×M chat-tool-to-source integrations into N+M, making "tag works everywhere" an architecture rather than a pile of connectors
  • Explain how an integrated personal knowledge graph (IPKG) turns free-form personal note-taking into typed, access-controlled organizational memory that a tag can surface — and why binding permissions to roles rather than individuals is what lets it scale
  • Map Claude Tag's real admin controls — per-channel access, separate identities, isolated memory scopes, token-spend limits, and full audit logs — onto the book's models for access control, agent identity, and decision-trace auditing
  • Describe the write-back flywheel by which every tagged conversation becomes a future precedent, and the security guardrails that keep that loop trustworthy
Quick Check

A sales rep tags Claude in a Teams thread: "@Claude — should we extend Globex the same payment terms we gave them last quarter?" Trace what the pipeline does, from the tag event to the reply, and name where the enterprise knowledge graph's scale-out, millisecond query performance is doing the decisive work.

(Answer: Step 1 — the Teams adapter normalizes the mention into a canonical tag event with the rep's identity and the thread participants. Step 2 — "Globex" resolves to a canonical customer node, "payment terms" to a terms-decision type, "last quarter" to a recency filter and a hint that precedents exist; the rep resolves to a permission set. Step 3 — a multi-hop traversal from the Globex node collects the prior payment-terms decision traces, their approvers, the version-correct terms policy, and any cited precedents; the scale-out graph returns this subgraph in milliseconds, keeping the retrieval path well under generation latency. Step 4 — rank and serialize the subgraph into ~1,000–1,500 tokens of signal, filtered to what the rep is authorized to see. Step 5 — Claude replies with a grounded, cited recommendation. Step 6 — the resolved decision is written back as a new trace anchored to Globex, available to the next tag. The decisive graph work is Step 3: turning a vague question into the exact relevant slice of organizational memory fast enough to feel conversational.)

You just connected the whole book to a single keystroke.

Nexus celebrating Every layer in this book — entity resolution, subgraph extraction, context budgeting, decision traces, access control, scale-out performance — showed up in the few seconds between a tag and a reply. That is the payoff: when the architecture is right, a person just mentions Claude, and the organization answers. Connect the dots — then ask why!


References

  1. Anthropic. Introducing Claude Tag. 2026. https://www.anthropic.com/news/introducing-claude-tag (accessed 2026-06-26). Quoted passages on channels, task staging, autonomous operation, learning, memory scopes, token-spend limits, and activity logging are drawn from this announcement.

  2. McCreary, Dan. "Integrating Personal Knowledge Graphs into the Enterprise." Chapter 14 in Personal Knowledge Graphs (PKGs): Methodology, Tools and Applications, edited by Sanju Tiwari, François Scharffe, Fernando Ortiz-Rodríguez, and Manas Gaur, 305–323. Stevenage, UK: Institution of Engineering and Technology, 2023. ISBN 9781839537011. DOI 10.1049/PBPC063E_ch14. Introduces the integrated personal knowledge graph (IPKG), frames it with the hypothesis that integrated PKGs produce more valuable knowledge than siloed tools, and organizes the work into background, challenges, steps, and security — arguing that vertex-level RBAC bound to roles rather than individuals is what makes enterprise integration scale.