skeptofox


Nameskeptofox JSON
Version 0.0.1 PyPI version JSON
download
home_pageNone
SummaryA machine-human intelligence framework for declarative programming, Agentic AI and automation workflows
upload_time2025-07-31 13:27:21
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2025 skeptofox Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords agentic ai automation declarative programming human-in-the-loop machine intelligence workflow
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # skeptofox

![PyPI - Version](https://img.shields.io/pypi/v/skeptofox)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/skeptofox)
![License](https://img.shields.io/pypi/l/skeptofox)

skeptofox provides a powerful, declarative paradigm for designing, building, and analyzing complex systems where human insight and machine intelligence collaborate. Define your *what*, and let Skeptofox orchestrate the *how*.


### Key Features

* **Declarative by Design:** Define complex workflows with intuitive, human-readable abstractions instead of writing brittle, imperative code.
* **Agentic AI Primitives:** High-level abstractions for bundling and linking single or multi-agent systems with data and automation pipelines.
* **Human-in-the-Loop:** Built-in hooks for human validation, feedback, and interactive steering of automated processes.
* **Extensible & Composable:** Easily integrate custom tools, models, data sources and endpoints from other pipelines into this self-orchestrating framework.

### Installation

```bash
pip install skeptofox
```

### Quick Start

Here's a simple example of defining a research agent that drafts a report and asks for human approval before finalizing it.

```python
from skeptofox import Workflow, Agent, HumanValidationStep, tool

# Define a simple tool for the agent to use
@tool
def web_search(query: str) -> str:
    """Performs a web search and returns the top results."""
    # (Your search implementation here)
    print(f"--> Searching for: {query}")
    return "Skeptofox was created in 2025. It focuses on declarative AI."

# 1. Define the Agent's identity and tools
researcher = Agent(
    role="Expert Tech Analyst",
    goal="Find information about the Skeptofox library and draft a summary.",
    tools=[web_search]
)

# 2. Declaratively define the workflow
wf = Workflow(
    name="Tech Report Workflow",
    steps=[
        researcher.plan("Create a plan to research Skeptofox."),
        researcher.execute("Execute the research plan."),
        HumanValidationStep(
            prompt="Please review the draft summary. Approve or provide feedback."
        ),
        researcher.execute("Finalize the report based on human feedback."),
    ],
)

# 3. Run the workflow
if __name__ == "__main__":
    final_report = wf.run()
    print("\n--- Final Report ---")
    print(final_report)
```

### Documentation

For detailed guides and API references, please see our full documentation (link coming soon).

### Contributing

Contributions are welcome! Whether it's bug reports, feature requests, or new code, please see our `CONTRIBUTING.md` guide for details on how to get started.

### License

This project is licensed under the MIT License. See the `LICENSE` file for details.
            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "skeptofox",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "agentic ai, automation, declarative programming, human-in-the-loop, machine intelligence, workflow",
    "author": null,
    "author_email": "skeptofox <skeptofox@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/ad/7a/ed348141f10e4f953f48c4a3794512f82675dfb2a9352011a996ab5baf23/skeptofox-0.0.1.tar.gz",
    "platform": null,
    "description": "# skeptofox\n\n![PyPI - Version](https://img.shields.io/pypi/v/skeptofox)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/skeptofox)\n![License](https://img.shields.io/pypi/l/skeptofox)\n\nskeptofox provides a powerful, declarative paradigm for designing, building, and analyzing complex systems where human insight and machine intelligence collaborate. Define your *what*, and let Skeptofox orchestrate the *how*.\n\n\n### Key Features\n\n* **Declarative by Design:** Define complex workflows with intuitive, human-readable abstractions instead of writing brittle, imperative code.\n* **Agentic AI Primitives:** High-level abstractions for bundling and linking single or multi-agent systems with data and automation pipelines.\n* **Human-in-the-Loop:** Built-in hooks for human validation, feedback, and interactive steering of automated processes.\n* **Extensible & Composable:** Easily integrate custom tools, models, data sources and endpoints from other pipelines into this self-orchestrating framework.\n\n### Installation\n\n```bash\npip install skeptofox\n```\n\n### Quick Start\n\nHere's a simple example of defining a research agent that drafts a report and asks for human approval before finalizing it.\n\n```python\nfrom skeptofox import Workflow, Agent, HumanValidationStep, tool\n\n# Define a simple tool for the agent to use\n@tool\ndef web_search(query: str) -> str:\n    \"\"\"Performs a web search and returns the top results.\"\"\"\n    # (Your search implementation here)\n    print(f\"--> Searching for: {query}\")\n    return \"Skeptofox was created in 2025. It focuses on declarative AI.\"\n\n# 1. Define the Agent's identity and tools\nresearcher = Agent(\n    role=\"Expert Tech Analyst\",\n    goal=\"Find information about the Skeptofox library and draft a summary.\",\n    tools=[web_search]\n)\n\n# 2. Declaratively define the workflow\nwf = Workflow(\n    name=\"Tech Report Workflow\",\n    steps=[\n        researcher.plan(\"Create a plan to research Skeptofox.\"),\n        researcher.execute(\"Execute the research plan.\"),\n        HumanValidationStep(\n            prompt=\"Please review the draft summary. Approve or provide feedback.\"\n        ),\n        researcher.execute(\"Finalize the report based on human feedback.\"),\n    ],\n)\n\n# 3. Run the workflow\nif __name__ == \"__main__\":\n    final_report = wf.run()\n    print(\"\\n--- Final Report ---\")\n    print(final_report)\n```\n\n### Documentation\n\nFor detailed guides and API references, please see our full documentation (link coming soon).\n\n### Contributing\n\nContributions are welcome! Whether it's bug reports, feature requests, or new code, please see our `CONTRIBUTING.md` guide for details on how to get started.\n\n### License\n\nThis project is licensed under the MIT License. See the `LICENSE` file for details.",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2025 skeptofox\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.",
    "summary": "A machine-human intelligence framework for declarative programming, Agentic AI and automation workflows",
    "version": "0.0.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/skeptofox/skeptofox/issues",
        "Homepage": "https://github.com/skeptofox/skeptofox",
        "Repository": "https://github.com/skeptofox/skeptofox"
    },
    "split_keywords": [
        "agentic ai",
        " automation",
        " declarative programming",
        " human-in-the-loop",
        " machine intelligence",
        " workflow"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "859f12ddde6151d35abbd6b56ceb760e9ac6471c7801df9b8937264d51f25e69",
                "md5": "0ff0540af06290bb5294fb63002d5197",
                "sha256": "393a1a917708985429fce768545b6d936780d49197259aa5c6d761431c5e7c5d"
            },
            "downloads": -1,
            "filename": "skeptofox-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0ff0540af06290bb5294fb63002d5197",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 4536,
            "upload_time": "2025-07-31T13:27:19",
            "upload_time_iso_8601": "2025-07-31T13:27:19.975073Z",
            "url": "https://files.pythonhosted.org/packages/85/9f/12ddde6151d35abbd6b56ceb760e9ac6471c7801df9b8937264d51f25e69/skeptofox-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad7aed348141f10e4f953f48c4a3794512f82675dfb2a9352011a996ab5baf23",
                "md5": "e46b26ddf472f1a8effde758e51b53c4",
                "sha256": "02a5cff6237f0c5f8d401170f9cbb8e702f8e2b25b327366aa5f8eb10768b908"
            },
            "downloads": -1,
            "filename": "skeptofox-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e46b26ddf472f1a8effde758e51b53c4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3615,
            "upload_time": "2025-07-31T13:27:21",
            "upload_time_iso_8601": "2025-07-31T13:27:21.662175Z",
            "url": "https://files.pythonhosted.org/packages/ad/7a/ed348141f10e4f953f48c4a3794512f82675dfb2a9352011a996ab5baf23/skeptofox-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-31 13:27:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "skeptofox",
    "github_project": "skeptofox",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "skeptofox"
}
        
Elapsed time: 2.93944s