← Best Practices

Claude Code Artifacts Only for Enterprise? Use PandaNpc to Let Anyone Publicly Share AI Coding Results

Anthropic has launched Artifacts for Claude Code: turning the output of a coding session into a real-time, interactive webpage that you can share with colleagues via a link. This is a great direction—the long string of output in the terminal was never meant to be shared with others. But when you actually try to use it, you'll find it blocks most developers: only Team/Enterprise plans can use it, links can only be opened by members of the same organization, and the page is read-only.

If you're an individual subscriber, running Claude Code with a custom backend, or just want to share results with someone outside your organization in a group chat—the official Artifacts can't help you. This article first explains the features and limitations of Claude Code Artifacts, then shares a public, universally accessible alternative: PandaNpc Results Page.

1. What Claude Code Artifacts Are and What They Can Do

Simply put, an artifact is a self-contained HTML page published by Claude Code from your session, hosted on a private URL at claude.ai. As the session continues, the same link updates in place. It's not an export of the chat history, but a results page "designed for reading and interaction." According to official documentation, it can contain:

  • Annotated change walkthrough: Render a PR diff, add comments next to relevant code lines, color-code by severity, so reviewers follow your thought process instead of piecing things together themselves.
  • Option comparison: Place several implementation/layout/copy variants side by side on one page, with a trade-off note under each.
  • Interactive parameter tuning: Sliders and switches bound to a value (e.g., animation easing curve) with real-time preview.
  • Data dashboard / Survey timeline: Charts and metric cards from session data, or a timeline filled in as you go.
  • Bring results back to session: A "Copy as prompt" button on the page, allowing interactive results to be exported as text and pasted back into the terminal for Claude to continue.

These capabilities, combined with Claude's built-in design skills (auto color matching, layout, and prioritizing your project's design system), make "presenting results" much more polished.

2. Three Limitations: Why Most People Can't Use It

After reviewing the features, let's look at the hard requirements explicitly stated in the official docs, and the problems become clear:

  1. Only Team/Enterprise plans: And you must use /login to log into claude.ai. Running Claude Code via API key, gateway token, Bedrock/Vertex, or any other method means you cannot publish artifacts.
  2. Only visible to same-organization members: The sharing scope "stops at your organization." People outside your organization—clients, external collaborators, friends in a WeChat group—need to log into the same organization to view the link, otherwise they can't see it. The only "external" method officially provided is to manually send the HTML file itself.
  3. Read-only, no collaboration: Others can only view the version you published; they cannot respond or continue on the page.

In other words, Claude Code Artifacts is an internal enterprise collaboration feature. For the vast majority of developers—individual subscribers, small teams, those using custom backends—it's essentially locked out.

3. PandaNpc Results Page: Public, Accessible to Everyone, and Can Be Brought Back to Session

PandaNpc's approach perfectly fills the gap left by the official door: turning "session result sharing" into public links + available on any plan + viewable without login. When you share a Claude Code session in PandaNpc, check "Generate results page," and the backend automatically reads the session, generates a structured results page, and hosts it on your own public link (pandanpc.com/share/cc/...). Anyone can open it and view it without needing a Claude account or belonging to any organization.

What's on the results page (each section auto-displays based on whether the session has corresponding content):

  • TL;DR: What this session actually accomplished.
  • Session scale bar: Time spent, number of dialog rounds, tool call distribution (Bash × N, Edit × N…), number of files created/modified—an overview of the work volume at a glance.
  • What was done: Key points list.
  • Changed files + real diff cards: Lists which files were modified, expand to see syntax-highlighted red/green diffs—this is the open version of the official "annotated change walkthrough," elevating the results page to "can be used as a PR walkthrough for colleagues."
  • Commands executed: Which commands were run during the session (e.g., npm test), displayed in terminal style.
  • Problem → Solution: The problem the session faced and how it was solved.
  • Remaining items: Outstanding to-dos not completed.
  • Tags: bugfix / feature / refactor + related tech stacks, for easy categorization and search.
  • Copy as prompt: One-click to compile the results summary into a prompt and copy it away—this is the pure frontend version of the official "Copy as prompt (bring results back to session)," usable by anyone who opens the page.

At the bottom, you can expand full session replay for anyone who wants to see the entire process.

4. How to Use: Three Steps to Turn a Session into a Public Results Page

  1. Open a Claude Code session in PandaNpc (desktop or web /agent both work).
  2. Click Share → Check "Generate results page" (default on) → Generate link. The backend uses a model to read the session, generates a results summary in seconds, and caches it.
  3. Send the public link. The recipient doesn't need to log in or belong to any organization—they directly see the results page; if they want details, they can expand the full replay.

If the session progresses further, go back to the share popup and click "Update snapshot," and the results page will be regenerated based on the latest content.

5. PandaNpc Results Page vs. Official Artifacts

Dimension Official Claude Code Artifacts PandaNpc Results Page
Who can view Only authenticated members of the creator's organization Anyone, no login or organization required
Plan requirement Only Team/Enterprise + /login All users (individual subscriptions / custom backends)
Results content Designed interactive pages (requires per-session prompt customization) Auto-generated: summary / scale / diff / commands / problem-solution / TODO / tags
Bring back to session Copy as prompt (within the page) Copy as prompt (usable by any visitor)
Hosting claude.ai, expires after 90 days Your own link, can be set to permanent

6. Suitable Scenarios

  • Delivering to clients / external collaborators: People outside the organization can open it without needing to be added to your Claude organization.
  • Team review: Diff cards + problem/solution are much clearer than pasting terminal output.
  • Archiving and retrospectives: Tags + changed files + commands make it easy to search "how was that fixed" later.
  • Personal sharing: You don't need a Team/Enterprise plan; you can still share a beautiful results page.

Conclusion

Claude Code Artifacts points in the right direction—turning AI coding results into shareable web pages—but the enterprise plan requirement and intra-organizational visibility limit it to an internal tool. PandaNpc Results Page preserves the same value—turning a session into a clean results showcase—while making it public, accessible to everyone, and one-click to bring back to the session. No matter which plan or which backend you use to run Claude Code, you can generously share your work results.

First published on pandanpc.com