Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -156,3 +156,4 @@ openapi_spec.yml

# Example output
examples/output
/examples/example_venv/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ src/
│ ├── inputs.py # Input handling
│ ├── workflow.py # Workflow factory
│ └── __init__.py # Public exports
├── scripts/ # CLI scripts for coding agents
├── nutrient_dws_scripts/ # CLI scripts for coding agents
└── tests/ # Test files
```

Expand Down
3 changes: 1 addition & 2 deletions context7.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
"$schema": "https://context7.com/schema/context7.json",
"projectTitle": "Nutrient DWS Python Client",
"description": "Python client library for Nutrient Document Web Services (DWS) API.\n",
"excludeFolders": ["src", "docs", "example", ".github"],
"excludeFiles": ["README.md"]
"folders": ["src/nutrient_dws_scripts"]
}
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ where = ["src"]
[tool.setuptools.package-data]
nutrient_dws = [
"py.typed",
"../../docs/WORKFLOW.md",
"../../docs/METHODS.md",
"../../LLM_DOC.md",
]
nutrient_dws_scripts = [
"LLM_DOC.md"
]

[project]
Expand Down Expand Up @@ -65,11 +65,11 @@ Repository = "https://github.com/PSPDFKit/nutrient-dws-client-python"
"Bug Tracker" = "https://github.com/PSPDFKit/nutrient-dws-client-python/issues"

[project.scripts]
dws-add-claude-code-rule = "scripts.add_claude_code_rule:main"
dws-add-cursor-rule = "scripts.add_cursor_rule:main"
dws-add-github-copilot-rule = "scripts.add_github_copilot_rule:main"
dws-add-junie-rule = "scripts.add_junie_rule:main"
dws-add-windsurf-rule = "scripts.add_windsurf_rule:main"
dws-add-claude-code-rule = "nutrient_dws_scripts.add_claude_code_rule:main"
dws-add-cursor-rule = "nutrient_dws_scripts.add_cursor_rule:main"
dws-add-github-copilot-rule = "nutrient_dws_scripts.add_github_copilot_rule:main"
dws-add-junie-rule = "nutrient_dws_scripts.add_junie_rule:main"
dws-add-windsurf-rule = "nutrient_dws_scripts.add_windsurf_rule:main"

[tool.ruff]
target-version = "py310"
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def main() -> None:
script_dir = os.path.dirname(os.path.abspath(__file__))
doc_path = os.path.join(script_dir, "..", "..", "LLM_DOC.md")
doc_path = os.path.join(script_dir, "LLM_DOC.md")

user_project_root = os.getcwd()
output_file = os.path.join(user_project_root, "CLAUDE.md")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def main() -> None:
script_dir = os.path.dirname(os.path.abspath(__file__))
doc_path = os.path.join(script_dir, "..", "..", "LLM_DOC.md")
doc_path = os.path.join(script_dir, "LLM_DOC.md")
with open(doc_path, encoding="utf-8") as file:
documentation = file.read()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def main() -> None:
script_dir = os.path.dirname(os.path.abspath(__file__))
doc_path = os.path.join(script_dir, "..", "..", "LLM_DOC.md")
doc_path = os.path.join(script_dir, "LLM_DOC.md")

user_project_root = os.getcwd()
output_directory = os.path.join(user_project_root, ".github")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def main() -> None:
script_dir = os.path.dirname(os.path.abspath(__file__))
doc_path = os.path.join(script_dir, "..", "..", "LLM_DOC.md")
doc_path = os.path.join(script_dir, "LLM_DOC.md")

user_project_root = os.getcwd()
output_directory = os.path.join(user_project_root, ".junie")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def main() -> None:
script_dir = os.path.dirname(os.path.abspath(__file__))
doc_path = os.path.join(script_dir, "..", "..", "LLM_DOC.md")
doc_path = os.path.join(script_dir, "LLM_DOC.md")
with open(doc_path, encoding="utf-8") as file:
documentation = file.read()

Expand Down
Loading