← Back to Skills Marketplace
People Strategy
by
Manojkumar Kotakonda
· GitHub ↗
· v1.0.0
641
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install people-strategy
Description
Manage and query a persistent SQLite-based graph of people and their relationships for personal CRM, org charts, mentorship, and collaboration mapping.
Usage Guidance
This skill appears to do what it claims: a local, SQLite-backed people/relationship manager implemented in plain Python. Before installing, note that it will create and store potentially sensitive personal data in a local file (default 'people.db' in the working directory). Consider: (1) running it in a controlled environment (virtualenv or container), (2) setting strict file permissions or encrypting the DB if you store sensitive PII, (3) making regular backups and handling export files carefully, and (4) reviewing the code if you plan to run it in a multi-user or production environment (e.g., enable SQLite foreign key enforcement if you rely on ON DELETE CASCADE). There are no network calls or credential requests in the code, so risk is limited to local data storage and normal software bugs rather than exfiltration.
Capability Analysis
Type: OpenClaw Skill
Name: people-strategy
Version: 1.0.0
The OpenClaw AgentSkills skill bundle for 'people-strategy' is classified as benign. The Python code (`database.py`, `people_skill.py`) correctly uses parameterized queries for all SQLite operations, effectively preventing SQL injection vulnerabilities. There are no indications of malicious activities such as data exfiltration, unauthorized network communication, arbitrary code execution, persistence mechanisms, or attempts at prompt injection within the `SKILL.md` or `README.md` files. The `requirements.txt` explicitly states no external dependencies, further reducing supply chain risk.
Capability Assessment
Purpose & Capability
The name/description (persistent SQLite graph of people/relationships) matches the included code and SKILL.md. The files implement local DB creation, CRUD operations, graph exports, and a CLI as described. No unrelated dependencies, binaries, or credentials are requested.
Instruction Scope
SKILL.md and the code only reference local SQLite operations and local CLI usage. There are no instructions to read unrelated system files, access other services, or transmit data externally. The runtime behavior described aligns with the provided CLI and Python API examples.
Install Mechanism
There is no install script or external download; requirements.txt lists no external dependencies and the code uses only the Python standard library. Nothing is written to unusual system locations—the DB is created at the given path (default 'people.db').
Credentials
The skill requires no environment variables, credentials, or config paths. The code uses a local SQLite file and does not access tokens, secrets, or external services.
Persistence & Privilege
The skill does not request persistent platform privileges (always:false). It stores data locally in a SQLite file in the working directory, which is appropriate for its purpose. The agent-autonomous-invocation flag is the platform default and not a unique concern here.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install people-strategy - After installation, invoke the skill by name or use
/people-strategy - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of people-strategy: a graph-based people relationship management skill.
- Create, read, update, delete people with detailed fields (name, role, organization, etc.)
- Add, modify, query, and delete directed relationships between people with support for custom relationship types
- Persistent storage using SQLite; schema includes people and edges tables with indexes for performance
- Full-text search and filtering across names, roles, and organizations
- Export entire people network as JSON for visualization or analysis
- Python API and CLI provided for integration and scripting
- Cascade deletions and duplicate prevention for relationships
- Example use cases include CRM, org charts, mentorship networks, and collaboration mapping
Metadata
Frequently Asked Questions
What is People Strategy?
Manage and query a persistent SQLite-based graph of people and their relationships for personal CRM, org charts, mentorship, and collaboration mapping. It is an AI Agent Skill for Claude Code / OpenClaw, with 641 downloads so far.
How do I install People Strategy?
Run "/install people-strategy" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is People Strategy free?
Yes, People Strategy is completely free (open-source). You can download, install and use it at no cost.
Which platforms does People Strategy support?
People Strategy is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created People Strategy?
It is built and maintained by Manojkumar Kotakonda (@makkzone); the current version is v1.0.0.
More Skills