Skip to content

Commit 616f43c

Browse files
committed
Release 0.17.1
1 parent 6e51472 commit 616f43c

20 files changed

Lines changed: 73 additions & 71 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to Descuff will be documented in this file.
44

55
## Unreleased - Next Changes
66

7+
## 0.17.1 - 2026-08-31 - Hosted Recon Scenario Suggestions
8+
79
### Added
810

911
- Added initial `descuff recon <url>` hosted URL reconnaissance with public standards discovery, same-origin page inspection, confidence-labeled artifacts, and read-only browser-agent reachability summaries.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It focuses on practical agent-facing standards: `llms.txt`, Schema.org JSON-LD,
1212

1313
Preview hosted recon can also inspect a deployed public URL and report what browser agents can observe without source access.
1414

15-
Current release: `descuff@0.16.1` on npm. Descuff is an early public preview for local Next.js App Router and Pages Router codebases, including common monorepo layouts where the app lives under folders such as `apps/web`.
15+
Current release: `descuff@0.17.1` on npm. Descuff is an early public preview for local Next.js App Router and Pages Router codebases, including common monorepo layouts where the app lives under folders such as `apps/web`.
1616

1717
Works today: local Next.js App Router and Pages Router projects.
1818

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "descuff-workspace",
3-
"version": "0.16.1",
3+
"version": "0.17.1",
44
"description": "Turn local Next.js websites into interfaces AI agents can understand and use.",
55
"private": true,
66
"license": "Apache-2.0",

packages/agent-workflow/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@descuff/agent-workflow",
3-
"version": "0.16.1",
3+
"version": "0.17.1",
44
"license": "Apache-2.0",
55
"type": "module",
66
"files": [
@@ -18,8 +18,8 @@
1818
"test": "vitest run test"
1919
},
2020
"dependencies": {
21-
"@descuff/ir": "^0.16.1",
22-
"@descuff/standard-core": "^0.16.1"
21+
"@descuff/ir": "^0.17.1",
22+
"@descuff/standard-core": "^0.17.1"
2323
},
2424
"description": "Agent workflow planning and instruction rendering for Descuff.",
2525
"repository": {

packages/analyzers/graphify/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@descuff/analyzer-graphify",
3-
"version": "0.16.1",
3+
"version": "0.17.1",
44
"license": "Apache-2.0",
55
"type": "module",
66
"files": [
@@ -18,8 +18,8 @@
1818
"test": "vitest run test"
1919
},
2020
"dependencies": {
21-
"@descuff/core": "^0.16.1",
22-
"@descuff/ir": "^0.16.1"
21+
"@descuff/core": "^0.17.1",
22+
"@descuff/ir": "^0.17.1"
2323
},
2424
"description": "Optional Graphify correlation adapter for Descuff analysis.",
2525
"repository": {

packages/analyzers/nextjs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@descuff/analyzer-nextjs",
3-
"version": "0.16.1",
3+
"version": "0.17.1",
44
"license": "Apache-2.0",
55
"type": "module",
66
"files": [
@@ -18,8 +18,8 @@
1818
"test": "vitest run test"
1919
},
2020
"dependencies": {
21-
"@descuff/core": "^0.16.1",
22-
"@descuff/ir": "^0.16.1"
21+
"@descuff/core": "^0.17.1",
22+
"@descuff/ir": "^0.17.1"
2323
},
2424
"description": "Next.js static analyzer for Descuff.",
2525
"repository": {

packages/analyzers/runtime/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@descuff/analyzer-runtime",
3-
"version": "0.16.1",
3+
"version": "0.17.1",
44
"license": "Apache-2.0",
55
"type": "module",
66
"files": [
@@ -19,8 +19,8 @@
1919
},
2020
"dependencies": {
2121
"@playwright/test": "^1.57.0",
22-
"@descuff/core": "^0.16.1",
23-
"@descuff/ir": "^0.16.1"
22+
"@descuff/core": "^0.17.1",
23+
"@descuff/ir": "^0.17.1"
2424
},
2525
"description": "Browser and runtime evidence analyzer for Descuff.",
2626
"repository": {

packages/cli/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "descuff",
3-
"version": "0.16.1",
3+
"version": "0.17.1",
44
"description": "Turn local Next.js websites into interfaces AI agents can understand and use.",
55
"license": "Apache-2.0",
66
"type": "module",
@@ -41,20 +41,20 @@
4141
"test": "vitest run test"
4242
},
4343
"dependencies": {
44-
"@descuff/agent-workflow": "^0.16.1",
45-
"@descuff/analyzer-graphify": "^0.16.1",
46-
"@descuff/analyzer-nextjs": "^0.16.1",
47-
"@descuff/analyzer-runtime": "^0.16.1",
48-
"@descuff/core": "^0.16.1",
49-
"@descuff/ir": "^0.16.1",
50-
"@descuff/reporter": "^0.16.1",
51-
"@descuff/standard-api-catalog": "^0.16.1",
52-
"@descuff/standard-core": "^0.16.1",
53-
"@descuff/standard-llms-txt": "^0.16.1",
54-
"@descuff/standard-openapi": "^0.16.1",
55-
"@descuff/standard-schema-org": "^0.16.1",
56-
"@descuff/standard-webmcp": "^0.16.1",
57-
"@descuff/validator": "^0.16.1",
58-
"@descuff/drift-core": "^0.16.1"
44+
"@descuff/agent-workflow": "^0.17.1",
45+
"@descuff/analyzer-graphify": "^0.17.1",
46+
"@descuff/analyzer-nextjs": "^0.17.1",
47+
"@descuff/analyzer-runtime": "^0.17.1",
48+
"@descuff/core": "^0.17.1",
49+
"@descuff/ir": "^0.17.1",
50+
"@descuff/reporter": "^0.17.1",
51+
"@descuff/standard-api-catalog": "^0.17.1",
52+
"@descuff/standard-core": "^0.17.1",
53+
"@descuff/standard-llms-txt": "^0.17.1",
54+
"@descuff/standard-openapi": "^0.17.1",
55+
"@descuff/standard-schema-org": "^0.17.1",
56+
"@descuff/standard-webmcp": "^0.17.1",
57+
"@descuff/validator": "^0.17.1",
58+
"@descuff/drift-core": "^0.17.1"
5959
}
6060
}

packages/config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@descuff/config",
3-
"version": "0.16.1",
3+
"version": "0.17.1",
44
"license": "Apache-2.0",
55
"type": "module",
66
"files": [
@@ -18,7 +18,7 @@
1818
"test": "vitest run test"
1919
},
2020
"dependencies": {
21-
"@descuff/ir": "^0.16.1"
21+
"@descuff/ir": "^0.17.1"
2222
},
2323
"description": "Configuration loading helpers for Descuff.",
2424
"repository": {

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@descuff/core",
3-
"version": "0.16.1",
3+
"version": "0.17.1",
44
"license": "Apache-2.0",
55
"type": "module",
66
"files": [
@@ -18,7 +18,7 @@
1818
"test": "vitest run test"
1919
},
2020
"dependencies": {
21-
"@descuff/ir": "^0.16.1"
21+
"@descuff/ir": "^0.17.1"
2222
},
2323
"description": "Core analysis orchestration primitives for Descuff.",
2424
"repository": {

0 commit comments

Comments
 (0)