← Back to Skills Marketplace
kingofsoysauce

Clawhub Publish Kmwrip1j

by kingOfSoySauce · GitHub ↗ · v0.4.0 · MIT-0
cross-platform ✓ Security Clean
100
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install clawhub-publish-kmwrip1j
Description
Analyze a user's MBTI from authorized OpenClaw memory, session history, and workspace notes. Use when the user asks for MBTI analysis, personality inference...
README (SKILL.md)

MBTI

Generate an evidence-backed MBTI report from authorized OpenClaw history and workspace notes.

Quick Start

This package is a skill. The public handoff line for other agents lives in README.md.

Primary entry points:

  • trigger phrases: MBTI, personality analysis, type me
  • skill command: mbti-report

Minimal runtime requirement:

  • python3

Local install for development or manual setup:

ln -s /absolute/path/to/mbti "$CODEX_HOME/skills/mbti"

Start an analysis by invoking the skill in chat:

Analyze my MBTI using only my authorized memory and session history

For agents and maintainers:

  • read this page top to bottom before running any script
  • use the existing pipeline scripts below as implementation steps
  • do not skip the authorization step
  • do not infer MBTI directly from raw history

At A Glance

What this skill produces:

  • report.html: primary deliverable
  • report.md: compact summary
  • analysis_result.json: type hypothesis, confidence, follow-up questions
  • evidence_pool.json: scored and traceable evidence

What the first interaction should do:

  1. Discover candidate source categories.
  2. Show the user what is available.
  3. Ask which categories are authorized.
  4. Run the extraction → evidence → inference → report pipeline.

Core Rule

Always separate the workflow into two layers:

  1. Full extraction from authorized sources into structured records and an evidence pool.
  2. MBTI inference only from the evidence pool and source summary.

Do not infer MBTI directly from the full raw history.

When To Use

Use this skill when the user wants:

  • MBTI analysis from existing conversations or memory
  • personality inference without filling out a questionnaire
  • a professional-looking personality report with evidence
  • a structured summary of likely type, adjacent alternatives, and uncertainties

Do not use this skill for clinical diagnosis or mental-health assessment.

Authorization First

Before reading any source content:

  1. Run source discovery.
  2. Show the user which source categories are available.
  3. Explain that the report may quote short excerpts unless quoting is disabled.
  4. Ask the user to confirm which source categories are allowed.

Default candidate categories:

  • workspace long-term memory: MEMORY.md
  • workspace daily memory: memory/*.md
  • OpenClaw sessions: ~/.openclaw/agents/*/sessions/*.jsonl
  • OpenClaw memory index: ~/.openclaw/memory/main.sqlite
  • OpenClaw task metadata: ~/.openclaw/tasks/runs.sqlite
  • OpenClaw cron metadata: ~/.openclaw/cron/runs/*.jsonl

Default exclusions:

  • .env
  • credentials/*
  • identity/*
  • device files
  • approval files
  • generic config files
  • gateway and runtime logs

Execution Flow

If the user does not provide an output directory, write results to:

./.mbti-reports/\x3Ctimestamp>/

Recommended order:

1. Discover Candidate Sources

python3 {baseDir}/scripts/discover_sources.py \
  --workspace-root . \
  --openclaw-home ~/.openclaw \
  --output /tmp/mbti-source-manifest.json

Use the manifest to explain what can be analyzed. Do not read content yet.

2. Ingest Authorized Sources

python3 {baseDir}/scripts/ingest_all_content.py \
  --manifest /tmp/mbti-source-manifest.json \
  --approved-source-types workspace-long-memory,workspace-daily-memory,openclaw-sessions \
  --output-dir ./.mbti-reports/\x3Ctimestamp>

This creates:

  • raw_records.jsonl
  • source_summary.json

3. Build Evidence Pool

python3 {baseDir}/scripts/build_evidence_pool.py \
  --raw-records ./.mbti-reports/\x3Ctimestamp>/raw_records.jsonl \
  --source-summary ./.mbti-reports/\x3Ctimestamp>/source_summary.json \
  --output ./.mbti-reports/\x3Ctimestamp>/evidence_pool.json

This stage should:

  • keep recall high
  • remove obvious tool noise
  • flag pseudo-signals
  • merge repeated facts
  • retain traceable evidence references

4. Infer MBTI From Evidence Pool

python3 {baseDir}/scripts/infer_mbti.py \
  --evidence-pool ./.mbti-reports/\x3Ctimestamp>/evidence_pool.json \
  --source-summary ./.mbti-reports/\x3Ctimestamp>/source_summary.json \
  --output ./.mbti-reports/\x3Ctimestamp>/analysis_result.json

Inference rules:

  • use four preferences as the primary decision layer
  • use type dynamics and cognitive functions only as a consistency check
  • weigh independent strong evidence above repeated weak signals
  • keep counterevidence visible
  • generate follow-up questions when margins are weak

If analysis_result.json contains needs_followup: true and the user is available to answer, ask the follow-up questions before finalizing the report.

5. Apply Follow-Up Answers And Rerun

After the user answers the low-confidence questions, rerun the pipeline with the answers incorporated as additional user evidence:

python3 {baseDir}/scripts/apply_followup_answers.py \
  --raw-records ./.mbti-reports/\x3Ctimestamp>/raw_records.jsonl \
  --source-summary ./.mbti-reports/\x3Ctimestamp>/source_summary.json \
  --analysis ./.mbti-reports/\x3Ctimestamp>/analysis_result.json \
  --output-dir ./.mbti-reports/\x3Ctimestamp> \
  --answer "S/N=\x3Cuser answer>" \
  --answer "J/P=\x3Cuser answer>"

This updates:

  • raw_records.jsonl
  • source_summary.json
  • followup_answers.json
  • evidence_pool.json
  • analysis_result.json
  • report.md
  • report.html

If the user declines to answer, keep the current report and surface the uncertainty explicitly.

6. Render Final Reports

python3 {baseDir}/scripts/render_report.py \
  --analysis ./.mbti-reports/\x3Ctimestamp>/analysis_result.json \
  --evidence-pool ./.mbti-reports/\x3Ctimestamp>/evidence_pool.json \
  --output-dir ./.mbti-reports/\x3Ctimestamp> \
  --quote-mode summary \
  --open

Add --open to automatically open the HTML report in the default browser after rendering.

This creates:

  • report.md
  • report.html

7. Render A Standalone HTML Preview

When you only need to tune layout, CSS, spacing, or badge/theme behavior, use the built-in preview mode instead of rerunning discovery, ingestion, evidence construction, and inference:

python3 {baseDir}/scripts/render_report.py \
  --debug-preview \
  --debug-type INTP \
  --output-dir /tmp/mbti-preview

This creates a fully populated report.html and report.md from a bundled fixture so report debugging does not depend on prior pipeline artifacts.

Stage Testing

When you want to test one stage in isolation, prepare a synthetic fixture for that stage and then run the real stage script against those files.

Prepare fixture inputs:

python3 {baseDir}/scripts/prepare_stage_fixture.py \
  --stage infer \
  --output-dir /tmp/mbti-stage-infer

Then run the stage you actually want to inspect:

python3 {baseDir}/scripts/infer_mbti.py \
  --evidence-pool /tmp/mbti-stage-infer/evidence_pool.json \
  --source-summary /tmp/mbti-stage-infer/source_summary.json \
  --output /tmp/mbti-stage-infer/analysis_result.json

Supported fixture stages:

  • discover: generates synthetic workspace and OpenClaw source files
  • ingest: adds source_manifest.json
  • evidence: adds raw_records.jsonl and source_summary.json
  • infer: adds evidence_pool.json
  • render: adds analysis_result.json
  • followup: adds answers_input.json for apply_followup_answers.py

Smoke-test all stage entrypoints with:

python3 -m unittest tests.test_stage_smoke

Report Rules

The HTML report is the primary artifact. The chat reply should only provide:

  • the most likely type
  • confidence level
  • 2-4 key observations
  • the output file paths

Do not freestyle the full report in chat if report.html already exists.

Evidence Rules

Treat the following as high-risk pseudo-signals:

  • requests about how the assistant should behave
  • formatting preferences
  • tool and workflow instructions without self-descriptive context
  • command output, logs, stack traces, or copied machine text

Treat the following as stronger evidence:

  • repeated self-descriptions
  • stable decision-making patterns
  • recurring work and reflection habits
  • conflict between desired structure and actual behavior
  • cross-source consistency

Read these references when needed:

Output Discipline

  • Keep tone rigorous and non-clinical.
  • Do not use emoji in the final report.
  • Present the result as a best-fit hypothesis, not a fixed truth.
  • Always include at least one "why not the adjacent type" section.
Usage Guidance
This skill appears coherent and runs locally with python3. Before installing or running it: (1) review the scripts yourself (especially discover_sources.py and ingest_all_content.py) to confirm they only read files you authorize and do not call external endpoints; (2) follow the SKILL.md authorization step — explicitly approve which source categories the skill may read; (3) avoid granting access to highly sensitive files (credentials, identity, gateway logs) even if suggested defaults exclude them; (4) run the skill in an isolated environment or with limited filesystem permissions if you want extra assurance; and (5) if you need absolute assurance of no network exfiltration, grep the code for network calls (requests, urllib, sockets) and test in an offline environment first.
Capability Analysis
Type: OpenClaw Skill Name: clawhub-publish-kmwrip1j Version: 0.4.0 The mbti-analyzer skill bundle is a legitimate tool designed to perform personality inference based on local OpenClaw session history and workspace notes. The code implements a structured data pipeline (discovery, ingestion, heuristic scoring, and reporting) that operates entirely locally without external network dependencies. Notably, the SKILL.md and Python scripts include proactive security and privacy measures, such as an 'Authorization First' workflow, an explicit blacklist for sensitive files (e.g., .env, credentials, identity folders), and regex-based filtering to exclude system noise and agent instructions from the analysis. The use of subprocess in render_report.py is limited to opening the final HTML report in a browser using safe argument lists.
Capability Assessment
Purpose & Capability
The name and description (MBTI analysis from OpenClaw memory, sessions, workspace notes) match the actual artifacts: SKILL.md describes discovery/authorization/ingest/infer/report pipeline and the repository includes Python scripts to discover sources, ingest content, build an evidence pool, infer MBTI, and render reports. Required binary is only python3, which is appropriate.
Instruction Scope
SKILL.md explicitly instructs discovery of candidate sources, asking the user to authorize specific categories, and then only ingesting approved sources. It references reading local OpenClaw paths (~/.openclaw/*) and workspace files (MEMORY.md, memory/*.md) which is necessary for the stated task. The doc also lists explicit exclusions (.env, credentials/*, identity/*, logs), and mandates the authorization step before reading content.
Install Mechanism
There is no install spec (instruction-only skill) and included code is run by python3. No remote downloads or package installers are declared, so nothing arbitrary is pulled from the network during install.
Credentials
The skill requests no environment variables or external credentials and only needs read access to local OpenClaw workspace and session files to perform its purpose. The access requested aligns with the goal of analyzing historical conversations and notes.
Persistence & Privilege
always is false and the skill does not claim to modify other skills or system-wide agent settings. Runtime behavior writes report artifacts into a local ./ .mbti-reports/<timestamp>/ directory (normal for report generation). Autonomous invocation is allowed by default but is not an unusual privilege here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawhub-publish-kmwrip1j
  3. After installation, invoke the skill by name or use /clawhub-publish-kmwrip1j
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.4.0
- Initial public release of **mbti-analyzer** (v0.4.0): analyze a user's MBTI and personality traits using authorized OpenClaw memory, session history, and workspace notes. - Added evidence-backed MBTI reporting workflow, including user-driven authorization of memory sources. - Supports report formats: HTML, Markdown, JSON results, and detailed evidence pools. - Clear separation of data extraction and inference processes for privacy and traceability. - Added interactive flow for resolving uncertain results via follow-up questions. - Included full CLI usage instructions and developer-focused testing tools for every processing stage.
Metadata
Slug clawhub-publish-kmwrip1j
Version 0.4.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Clawhub Publish Kmwrip1j?

Analyze a user's MBTI from authorized OpenClaw memory, session history, and workspace notes. Use when the user asks for MBTI analysis, personality inference... It is an AI Agent Skill for Claude Code / OpenClaw, with 100 downloads so far.

How do I install Clawhub Publish Kmwrip1j?

Run "/install clawhub-publish-kmwrip1j" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Clawhub Publish Kmwrip1j free?

Yes, Clawhub Publish Kmwrip1j is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Clawhub Publish Kmwrip1j support?

Clawhub Publish Kmwrip1j is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Clawhub Publish Kmwrip1j?

It is built and maintained by kingOfSoySauce (@kingofsoysauce); the current version is v0.4.0.

💬 Comments